Skip to Content.
Sympa Menu

freetds - Re: Patching FreeTDS for SQLServer2000

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: Bob Kline <bkline AT rksystems.com>
  • To: TDS Development Group <freetds AT franklin.oit.unc.edu>
  • Subject: Re: Patching FreeTDS for SQLServer2000
  • Date: Tue, 13 Mar 2001 09:06:56 -0500 (EST)


On Tue, 13 Mar 2001, Raul wrote:

> Bob, you're right
> I omitted the code only to avoid an annoying post
> BTW this is the original method of Statement class

[annoying post snipped :->}]

That was the complete code for the entire method, not a context diff.
I've created the diff output below for you, but you might want to read
the man page for diff.

diff -Naur original/Statement.java modified/Statement.java
--- original/Statement.java Mon Jul 17 00:41:06 2000
+++ modified/Statement.java Tue Mar 13 08:57:31 2001
@@ -603,6 +603,10 @@
{
tds.processSubPacket();
}
+ else if (tds.peek() == Tds.TDS_RET_STAT_TOKEN)
+ {
+ tds.processSubPacket();
+ }
else if (tds.isDoneInProc())
{
PacketDoneInProcResult tmp =

--
Bob Kline
mailto:bkline AT rksystems.com
http://www.rksystems.com





Archive powered by MHonArc 2.6.24.

Top of Page