提交 5cad6813 编写于 作者: B Barry Lind

Fixed improper message length for the connection termination message 'X' when

using the V3 protocol.

 Modified Files:
 	jdbc1/AbstractJdbc1Connection.java
上级 d3fe721a
......@@ -9,7 +9,7 @@
* Copyright (c) 2003, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Connection.java,v 1.22 2003/08/11 20:54:55 barry Exp $
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Connection.java,v 1.23 2003/08/15 18:36:58 barry Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -1121,7 +1121,7 @@ public abstract class AbstractJdbc1Connection implements BaseConnection
try
{
pgStream.SendChar('X');
pgStream.SendInteger(0,4);
pgStream.SendInteger(4,4);
pgStream.flush();
pgStream.close();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册