Václav Burda
Václav Burda
try change length of a each list in the Section items in your example. Something like: ``` adapter.addSectionItem( SectionItem("Title0", R.color.colorPrimary, arrayListOf("item0")) ) adapter.addSectionItem( SectionItem("Title1", R.color.md_yellow_100, arrayListOf("item0", "item1", "item2", "item3")) )...
What about add index into array's item?
Hi. I still cannot catch this situation. table column: ` verification_hash uuid DEFAULT uuid_generate_v1() UNIQUE` POJO: ``` @Column(name = "verification_hash") public String verificationHash; ``` When the insert method is called,...
Hi. I run tomcat8 with java8 and Norm 1.0 need java11. Result: `java.lang.UnsupportedClassVersionError: com/dieselpoint/norm/Database has been compiled by a more recent version of the Java Runtime (class file version 55.0),...
How catch `created timestamp NOT NULL DEFAULT NOW()` column with single pojo object? I tried ``` @GeneratedValue public Timestamp created; ``` with result: `com.dieselpoint.norm.DbException: org.postgresql.util.PSQLException: Bad value for type long...
Hi, RETURNING * bug in Postgres driver is back. Try add TRIGGER. CREATE TRIGGER AFTER INSERT OR DELETE OR UPDATE ON FOR EACH ROW EXECUTE PROCEDURE () the error: Caused...
I have a another thing. I do someting as a simple HEX editor. The editor is able replace or add some of bytes and save it back to the hex...