Azavea.Open.DAO.OleDb.OleDbAccessDaLayer.GetAutoType C# (CSharp) Méthode

GetAutoType() protected méthode

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).
Résultat string
        protected override string GetAutoType(Type baseType)
        {
            return "AUTOINCREMENT";
        }