public override DataTable GetView(string viewName) { return(SQLSvrDbi.GetViewData(viewName)); }
public override DataTable GetIndexes() { return(SQLSvrDbi.GetIndexes()); }
public override DataTable GetIndex(string indexName) { return(SQLSvrDbi.GetIndex(indexName)); }
public override DataTable GetTableData(string tableName) { return((DataTable)SQLSvrDbi.GetTableData(tableName)); }
public override DataTable GetViews() { return(SQLSvrDbi.GetViews()); }
public DataTable GetTableColumns(string schemaName, string tableName) { return(SQLSvrDbi.GetTableColumns(schemaName, tableName)); }
public static DataTable GetCKConstraints(string schemaName, string tableName) { return(SQLSvrDbi.GetCKConstraints(schemaName, tableName)); }
public override DataTable GetTableNames() { return(SQLSvrDbi.GetTableNames()); }
public static String GetTableSchema(string tableName) { return(SQLSvrDbi.GetTableSchema(tableName)); }
public override DataTable GetTrigger(string triggerName) { return(SQLSvrDbi.GetTrigger(triggerName)); }
public override int TestConnection() { return(SQLSvrDbi.TestConnection()); }
public override DataTable GetTriggers() { return(SQLSvrDbi.GetTriggers()); }
public override DataTable GetFunction(string functionName) { return(SQLSvrDbi.GetFunction(functionName)); }
public override DataTable GetFunctions() { return(SQLSvrDbi.GetFunctions()); }
public override DataTable GetStoredProcedure(string procedureName) { return(SQLSvrDbi.GetStoredProcedure(procedureName)); }
public override DataTable GetStoredProcedures() { return(SQLSvrDbi.GetStoredProcedures()); }