Update of /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/Protocol
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15275/PostgreSql/Data/Protocol
Modified Files:
PgDbClient.cs PgOutputPacket.cs
Log Message:
Updated sources
Index: PgDbClient.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/Protocol/PgDbClient.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** PgDbClient.cs 11 Sep 2005 19:46:23 -0000 1.5
--- PgDbClient.cs 12 Sep 2005 14:48:19 -0000 1.6
***************
*** 226,230 ****
{
this.options = options;
! this.encoding = Encoding.UTF8;
GC.SuppressFinalize(this);
--- 226,230 ----
{
this.options = options;
! this.encoding = Encoding.Default;
GC.SuppressFinalize(this);
***************
*** 277,281 ****
packet.Write((byte)0); // Terminator
- // Handshake protocol will be negotiated here if the connection is using SSL/TLS
this.SendSimplePacket(packet);
--- 277,280 ----
***************
*** 449,453 ****
string parameterValue = packet.ReadNullString();
! parameterStatus.Add(parameterName, parameterValue);
switch (parameterName)
--- 448,452 ----
string parameterValue = packet.ReadNullString();
! this.ParameterStatus.Add(parameterName, parameterValue);
switch (parameterName)
Index: PgOutputPacket.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/Protocol/PgOutputPacket.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PgOutputPacket.cs 11 Sep 2005 13:29:16 -0000 1.4
--- PgOutputPacket.cs 12 Sep 2005 14:48:19 -0000 1.5
***************
*** 59,63 ****
public PgOutputPacket(Encoding encoding)
- : this()
{
this.stream = new MemoryStream();
--- 59,62 ----
|