Example #1
0
 public int?QueryInteger(OracleConnection connection, string column, int id) => QM.QueryInteger(connection, column, table, id);
Example #2
0
 public int?QueryInteger(OracleConnection connection, string column, object[] conditions) => QM.QueryInteger(connection, column, table, conditions);
Example #3
0
 public int Count(OracleConnection connection)
 {
     return((int)QM.QueryInteger(connection, $"select count(*) from {table}", new object[0]));
 }