Interface UserTableServiceInf
User defined table service
User tables are database tables (SQLserver or Oracle) which are created by the user himself.
Syntax
public interface UserTableServiceInf
Methods
Name |
Description |
ExecuteCustomStoredProcedure(String, String, List<DBParameterContract>, String, Boolean)
|
Executes a custom stored procedure
|
UserTableCreateTable(String, String, List<String>, Boolean, String)
|
Creates a user table
|
UserTableDeleteRecords(String, String, String, List<WhereClauseElementContract>)
|
Deletes some rows from a user table
|
UserTableDropTable(String, String)
|
Drops a user table
|
UserTableExportData(String, String, Boolean)
|
Exports the whole content from a user table
|
UserTableGetAllTableNames(String)
|
Gets all available user table names
|
UserTableGetRecords(String, String, String, String, Boolean, List<WhereClauseElementContract>, List<OrderByClauseElementContract>)
|
Gets some rows from a user table
|
UserTableGetRecordsCount(String, String, String, List<WhereClauseElementContract>)
|
Gets the count of rows from a user table
|
UserTableGetRecordsWithSelectedColumns(String, String, Int32, Boolean, List<SelectedColumnContract>, Boolean, List<WhereClauseElementContract>, List<OrderByClauseElementContract>, Boolean)
|
Gets some rows from a user table
|
UserTableGetTableInfo(String, String)
|
Gets user table information
|
UserTableImportData(String, String, List<List<String>>, Boolean, Boolean)
|
Imports rows into a user table
|
UserTableInsertRecord(String, String, List<String>)
|
Inserts a single row into a user table
|
UserTableUpdateRow(String, String, List<String>)
|
Updates specific row of a user table
|
UserTableUpdateTable(String, UserTableInfoContract)
|
Updates a user table
|