Azavea.Open.DAO.SQLite.SQLiteDaLayer.GetAutoType C# (CSharp) Method

GetAutoType() protected method

Returns the DDL for the type of an automatically incrementing column. Some databases only store autonums in one col type so baseType may be ignored.
protected GetAutoType ( Type baseType ) : string
baseType System.Type The data type of the column (nominally).
return string
        protected override string GetAutoType(Type baseType)
        {
            return "INTEGER PRIMARY KEY AUTOINCREMENT";
        }