Update of /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/DbSchema
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5092/Data/DbSchema
Modified Files:
PgDbSchema.cs PgFunctionPrivilegesSchema.cs
PgTablePrivilegesSchema.cs PgViewPrivilegesSchema.cs
Log Message:
Started the reorganization of the CVS module
Index: PgDbSchema.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/DbSchema/PgDbSchema.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PgDbSchema.cs 8 Sep 2005 18:37:50 -0000 1.1
--- PgDbSchema.cs 9 Sep 2005 21:35:00 -0000 1.2
***************
*** 22,25 ****
--- 22,26 ----
using System.Text.RegularExpressions;
using System.Collections;
+ using PostgreSql.Data.PostgreSqlClient;
namespace PostgreSql.Data.DbSchema
***************
*** 99,103 ****
#endregion
! #region Abstract Methods
public abstract void AddTables();
--- 100,104 ----
#endregion
! #region · Abstract Methods ·
public abstract void AddTables();
***************
*** 320,324 ****
#endregion
! #region Protected Methods
protected void AddPrivilegesColumns(DataTable table)
--- 321,325 ----
#endregion
! #region · Protected Methods ·
protected void AddPrivilegesColumns(DataTable table)
Index: PgTablePrivilegesSchema.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/DbSchema/PgTablePrivilegesSchema.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PgTablePrivilegesSchema.cs 8 Sep 2005 18:37:50 -0000 1.1
--- PgTablePrivilegesSchema.cs 9 Sep 2005 21:35:00 -0000 1.2
***************
*** 20,24 ****
using System.Data;
using System.Text;
! using System.Text.RegularExpressions;
namespace PostgreSql.Data.DbSchema
--- 20,24 ----
using System.Data;
using System.Text;
! using PostgreSql.Data.PostgreSqlClient;
namespace PostgreSql.Data.DbSchema
Index: PgFunctionPrivilegesSchema.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/DbSchema/PgFunctionPrivilegesSchema.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PgFunctionPrivilegesSchema.cs 8 Sep 2005 18:37:50 -0000 1.1
--- PgFunctionPrivilegesSchema.cs 9 Sep 2005 21:35:00 -0000 1.2
***************
*** 20,23 ****
--- 20,24 ----
using System.Data;
using System.Text;
+ using PostgreSql.Data.PostgreSqlClient;
namespace PostgreSql.Data.DbSchema
Index: PgViewPrivilegesSchema.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/DbSchema/PgViewPrivilegesSchema.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PgViewPrivilegesSchema.cs 8 Sep 2005 18:37:50 -0000 1.1
--- PgViewPrivilegesSchema.cs 9 Sep 2005 21:35:00 -0000 1.2
***************
*** 20,23 ****
--- 20,24 ----
using System.Data;
using System.Text;
+ using PostgreSql.Data.PostgreSqlClient;
namespace PostgreSql.Data.DbSchema
|