[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source PgDatabaseSchemaT
Status: Inactive
Brought to you by:
carlosga_fb
From: Carlos G. Á. <car...@us...> - 2004-09-29 12:15:20
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17095 Modified Files: PgDatabaseSchemaTest.cs Log Message: Mayor update of the PgSqlClient sources Index: PgDatabaseSchemaTest.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient.UnitTests/source/PgDatabaseSchemaTest.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PgDatabaseSchemaTest.cs 9 Feb 2004 14:21:31 -0000 1.3 --- PgDatabaseSchemaTest.cs 29 Sep 2004 12:15:07 -0000 1.4 *************** *** 30,35 **** public void Aggregates() { ! DataTable aggregates = Connection.GetDbSchemaTable( ! PgDbSchemaType.Aggregates, null); } --- 30,34 ---- public void Aggregates() { ! DataTable aggregates = Connection.GetSchema("Aggregates", null); } *************** *** 37,42 **** public void Casts() { ! DataTable casts = Connection.GetDbSchemaTable( ! PgDbSchemaType.Casts, null); } --- 36,40 ---- public void Casts() { ! DataTable casts = Connection.GetSchema("Casts", null); } *************** *** 44,49 **** public void CheckConstraints() { ! DataTable checkConstraints = Connection.GetDbSchemaTable( ! PgDbSchemaType.Check_Constraints, null); } --- 42,46 ---- public void CheckConstraints() { ! DataTable checkConstraints = Connection.GetSchema("CheckConstraints", null); } *************** *** 51,56 **** public void CheckConstraintsByTable() { ! DataTable checkConstraintsByTable = Connection.GetDbSchemaTable( ! PgDbSchemaType.Check_Constraints_By_Table, null); } --- 48,52 ---- public void CheckConstraintsByTable() { ! DataTable checkConstraintsByTable = Connection.GetSchema("CheckConstraintsByTable", null); } *************** *** 58,63 **** public void Columns() { ! DataTable columns = Connection.GetDbSchemaTable( ! PgDbSchemaType.Columns, null); } --- 54,58 ---- public void Columns() { ! DataTable columns = Connection.GetSchema("Columns", null); } *************** *** 65,70 **** public void Databases() { ! DataTable databases = Connection.GetDbSchemaTable( ! PgDbSchemaType.Database, null); } --- 60,64 ---- public void Databases() { ! DataTable databases = Connection.GetSchema("Database", null); } *************** *** 72,77 **** public void Domains() { ! DataTable domains = Connection.GetDbSchemaTable( ! PgDbSchemaType.Domains, null); } --- 66,70 ---- public void Domains() { ! DataTable domains = Connection.GetSchema("Domains", null); } *************** *** 79,84 **** public void ForeignKeys() { ! DataTable foreignKeys = Connection.GetDbSchemaTable( ! PgDbSchemaType.Foreign_Keys, null); } --- 72,76 ---- public void ForeignKeys() { ! DataTable foreignKeys = Connection.GetSchema("ForeignKeys", null); } *************** *** 86,91 **** public void FunctionPrivileges() { ! DataTable functionPrivileges = Connection.GetDbSchemaTable( ! PgDbSchemaType.Function_Privileges, null); } --- 78,82 ---- public void FunctionPrivileges() { ! DataTable functionPrivileges = Connection.GetSchema("FunctionPrivileges", null); } *************** *** 93,98 **** public void Functions() { ! DataTable functions = Connection.GetDbSchemaTable( ! PgDbSchemaType.Functions, null); } --- 84,88 ---- public void Functions() { ! DataTable functions = Connection.GetSchema("Functions", null); } *************** *** 100,105 **** public void Groups() { ! DataTable groups = Connection.GetDbSchemaTable( ! PgDbSchemaType.Groups, null); } --- 90,94 ---- public void Groups() { ! DataTable groups = Connection.GetSchema("Groups", null); } *************** *** 107,112 **** public void Indexes() { ! DataTable indexes = Connection.GetDbSchemaTable( ! PgDbSchemaType.Indexes, null); } --- 96,100 ---- public void Indexes() { ! DataTable indexes = Connection.GetSchema("Indexes", null); } *************** *** 114,119 **** public void PrimaryKeys() { ! DataTable primaryKeys = Connection.GetDbSchemaTable( ! PgDbSchemaType.Primary_Keys, null); } --- 102,106 ---- public void PrimaryKeys() { ! DataTable primaryKeys = Connection.GetSchema("PrimaryKeys", null); } *************** *** 121,126 **** public void ProviderTypes() { ! DataTable providerTypes = Connection.GetDbSchemaTable( ! PgDbSchemaType.Provider_Types, null); } --- 108,112 ---- public void ProviderTypes() { ! DataTable providerTypes = Connection.GetSchema("ProviderTypes", null); } *************** *** 128,133 **** public void Schemata() { ! DataTable schemata = Connection.GetDbSchemaTable( ! PgDbSchemaType.Schemata, null); } --- 114,118 ---- public void Schemata() { ! DataTable schemata = Connection.GetSchema("Schemata", null); } *************** *** 135,140 **** public void SqlLanguages() { ! DataTable sqlLanguages = Connection.GetDbSchemaTable( ! PgDbSchemaType.Sql_Languages, null); } --- 120,124 ---- public void SqlLanguages() { ! DataTable sqlLanguages = Connection.GetSchema("SqlLanguages", null); } *************** *** 143,148 **** public void Statistics() { ! DataTable statistics = Connection.GetDbSchemaTable( ! PgDbSchemaType.Statistics, null); } --- 127,131 ---- public void Statistics() { ! DataTable statistics = Connection.GetSchema("Statistics", null); } *************** *** 150,155 **** public void TableConstraint() { ! DataTable tableConstraint = Connection.GetDbSchemaTable( ! PgDbSchemaType.Table_Constraint, null); } --- 133,137 ---- public void TableConstraint() { ! DataTable tableConstraint = Connection.GetSchema("TableConstraint", null); } *************** *** 157,162 **** public void TablePrivileges() { ! DataTable tablePrivileges = Connection.GetDbSchemaTable( ! PgDbSchemaType.Table_Privileges, null); } --- 139,143 ---- public void TablePrivileges() { ! DataTable tablePrivileges = Connection.GetSchema("TablePrivileges", null); } *************** *** 165,170 **** public void TableStatistics() { ! DataTable table_Statistics = Connection.GetDbSchemaTable( ! PgDbSchemaType.Table_Statistics, null); } --- 146,150 ---- public void TableStatistics() { ! DataTable tableStatistics = Connection.GetSchema("TableStatistics", null); } *************** *** 172,177 **** public void Tables() { ! DataTable tables = Connection.GetDbSchemaTable( ! PgDbSchemaType.Tables, null); } --- 152,156 ---- public void Tables() { ! DataTable tables = Connection.GetSchema("Tables", null); } *************** *** 180,185 **** public void TablesInfo() { ! DataTable tablesInfo = Connection.GetDbSchemaTable( ! PgDbSchemaType.Tables_Info, null); } --- 159,163 ---- public void TablesInfo() { ! DataTable tablesInfo = Connection.GetSchema("TablesInfo", null); } *************** *** 188,193 **** public void TriggerParameters() { ! DataTable triggerParameters = Connection.GetDbSchemaTable( ! PgDbSchemaType.Trigger_Parameters, null); } --- 166,170 ---- public void TriggerParameters() { ! DataTable triggerParameters = Connection.GetSchema("TriggerParameters", null); } *************** *** 196,201 **** public void TriggerPrivileges() { ! DataTable triggerPrivileges = Connection.GetDbSchemaTable( ! PgDbSchemaType.Trigger_Privileges, null); } --- 173,177 ---- public void TriggerPrivileges() { ! DataTable triggerPrivileges = Connection.GetSchema("TriggerPrivileges", null); } *************** *** 203,208 **** public void Triggers() { ! DataTable triggers = Connection.GetDbSchemaTable( ! PgDbSchemaType.Triggers, null); } --- 179,183 ---- public void Triggers() { ! DataTable triggers = Connection.GetSchema("Triggers", null); } *************** *** 211,216 **** public void UsagePrivileges() { ! DataTable usagePrivileges = Connection.GetDbSchemaTable( ! PgDbSchemaType.Usage_Privileges, null); } --- 186,190 ---- public void UsagePrivileges() { ! DataTable usagePrivileges = Connection.GetSchema("UsagePrivileges", null); } *************** *** 219,224 **** public void ViewColumnUsage() { ! DataTable viewColumnUsage = Connection.GetDbSchemaTable( ! PgDbSchemaType.View_Column_Usage, null); } --- 193,197 ---- public void ViewColumnUsage() { ! DataTable viewColumnUsage = Connection.GetSchema("ViewColumnUsage", null); } *************** *** 226,231 **** public void ViewPrivileges() { ! DataTable viewPrivileges = Connection.GetDbSchemaTable( ! PgDbSchemaType.View_Privileges, null); } --- 199,203 ---- public void ViewPrivileges() { ! DataTable viewPrivileges = Connection.GetSchema("ViewPrivileges", null); } *************** *** 233,238 **** public void Views() { ! DataTable views = Connection.GetDbSchemaTable( ! PgDbSchemaType.Views, null); } } --- 205,209 ---- public void Views() { ! DataTable views = Connection.GetSchema("Views", null); } } |