Class AutoSeqMeta

java.lang.Object
io.odysz.semantics.meta.TableMeta
io.odysz.semantic.meta.SemanticTableMeta
io.odysz.semantic.meta.AutoSeqMeta
All Implemented Interfaces:
XMLTable.IMapValue

public class AutoSeqMeta extends SemanticTableMeta
For Sqlite3,
CREATE TABLE if not exists %s (
 sid text(50),
 seq INTEGER,
 remarks text(200),
 CONSTRAINT oz_autoseq_pk PRIMARY KEY (sid));
Max rows (sid) is 2 ^ 64, which is not reachable in Sqlite3, see 13. Maximum Number Of Rows In A Table
Author:
odys-z@github.com
  • Constructor Details

    • AutoSeqMeta

      public AutoSeqMeta(String... conn)