Update of /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/PostgreSqlClient
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2572/Data/PostgreSqlClient
Modified Files:
PgDataReader.cs PgParameter.cs PgTransaction.cs
Log Message:
Bring sources to a buildable state
Index: PgParameter.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/PostgreSqlClient/PgParameter.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PgParameter.cs 14 Sep 2005 20:44:30 -0000 1.4
--- PgParameter.cs 12 Mar 2006 21:55:48 -0000 1.5
***************
*** 34,37 ****
--- 34,38 ----
private DataRowVersion sourceVersion;
private bool isNullable;
+ private bool sourceColumnNullMapping;
private string parameterName;
private string sourceColumn;
***************
*** 42,46 ****
private PgDbType providerType;
private bool inferType;
- private string sourceColumnNullMapping;
private PgParameterCollection parent;
--- 43,46 ----
***************
*** 153,167 ****
}
! public override int Offset
! {
! get { throw new Exception("The method or operation is not implemented."); }
! set { throw new Exception("The method or operation is not implemented."); }
! }
!
! public override bool SourceColumnNullMapping
! {
! get { throw new Exception("The method or operation is not implemented."); }
! set { throw new Exception("The method or operation is not implemented."); }
! }
#endregion
--- 153,161 ----
}
! public override bool SourceColumnNullMapping
! {
! get { return this.sourceColumnNullMapping; }
! set { this.sourceColumnNullMapping = value; }
! }
#endregion
***************
*** 184,188 ****
this.sourceVersion = DataRowVersion.Current;
this.isNullable = false;
! this.providerType = PgDbType.VarChar;
this.inferType = true;
}
--- 178,182 ----
this.sourceVersion = DataRowVersion.Current;
this.isNullable = false;
! this.providerType = PgDbType.VarChar;
this.inferType = true;
}
***************
*** 199,203 ****
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
}
--- 193,197 ----
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
}
***************
*** 206,210 ****
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
this.size = size;
}
--- 200,204 ----
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
this.size = size;
}
***************
*** 218,222 ****
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
this.size = size;
this.sourceColumn = sourceColumn;
--- 212,216 ----
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
this.size = size;
this.sourceColumn = sourceColumn;
***************
*** 238,242 ****
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
this.size = size;
this.direction = direction;
--- 232,236 ----
this.inferType = false;
this.parameterName = parameterName;
! this.providerType = dbType;
this.size = size;
this.direction = direction;
Index: PgTransaction.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/PostgreSqlClient/PgTransaction.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PgTransaction.cs 11 Sep 2005 12:12:31 -0000 1.3
--- PgTransaction.cs 12 Mar 2006 21:55:48 -0000 1.4
***************
*** 108,118 ****
#region · IDisposable Methods ·
! public override void Dispose()
! {
! this.Dispose(true);
! GC.SuppressFinalize(this);
! }
!
! private void Dispose(bool disposing)
{
if (!this.disposed)
--- 108,112 ----
#region · IDisposable Methods ·
! protected override void Dispose(bool disposing)
{
if (!this.disposed)
Index: PgDataReader.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/PostgreSqlClient/PgDataReader.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** PgDataReader.cs 13 Sep 2005 18:21:51 -0000 1.6
--- PgDataReader.cs 12 Mar 2006 21:55:48 -0000 1.7
***************
*** 93,103 ****
#region · IDisposable methods ·
! public override void Dispose()
! {
! this.Dispose(true);
! System.GC.SuppressFinalize(this);
! }
!
! private void Dispose(bool disposing)
{
if (!this.disposed)
--- 93,97 ----
#region · IDisposable methods ·
! protected override void Dispose(bool disposing)
{
if (!this.disposed)
|