Beispiel #1
0
        private int?GetFactorySeed(DatabaseEngine db, string tableName)
        {
            object seed = db.ExecuteScalar(string.Format("select top 1  seed from tableseed where tablename='{0}'", db.GetTableName(tableName)));

            return((seed == DBNull.Value) ? null : (int?)seed);
        }