Azavea.Open.DAO.SQLite.SQLiteDaLayer.GetAutoType C# (CSharp) 메소드

GetAutoType() 보호된 메소드

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).
리턴 string
        protected override string GetAutoType(Type baseType)
        {
            return "INTEGER PRIMARY KEY AUTOINCREMENT";
        }