Example #1
0
 public Task <T> GetValue <T>(string query) => CN.SqlValue <T>(query);
Example #2
0
 public Task <string> GetDataType(string table, string field) => CN.SqlValue <string>(Queries.DATATYPE(table, field));
Example #3
0
 public Task <int> ROWCOUNT(string table) => CN.SqlValue <int>(Queries.ROWCOUNT(table));
Example #4
0
 public Task <DateTime> LastUserChange(string table) => CN.SqlValue <DateTime>(Queries.LAST_USERUPDATE(DATABASE, table));
Example #5
0
 public Task <int> ColumnCount() => CN.SqlValue <int>(Queries.COLUMN_COUNT(DATABASE, TABLE));