Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21468
Modified Files:
PgConnectionParams.cs
Log Message:
Rework simple query protocol implementation
Index: PgConnectionParams.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient/PgConnectionParams.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PgConnectionParams.cs 9 Feb 2004 14:20:45 -0000 1.4
--- PgConnectionParams.cs 12 Feb 2004 19:52:05 -0000 1.5
***************
*** 36,39 ****
--- 36,40 ----
private Encoding encoding;
private bool ssl;
+ private bool simpleQueryMode;
#endregion
***************
*** 101,104 ****
--- 102,111 ----
}
+ public bool SimpleQueryMode
+ {
+ get { return simpleQueryMode; }
+ set { simpleQueryMode = value; }
+ }
+
#endregion
***************
*** 115,118 ****
--- 122,126 ----
timeout = 15;
encoding = Encoding.Default;
+ simpleQueryMode = false;
}
|