Skip to Content.
Sympa Menu

freetds - RE: tdsdump file always getting created.

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: "Wilson, John" <John.Wilson AT savvis.net>
  • To: "'TDS Development Group'" <freetds AT franklin.metalab.unc.edu>
  • Subject: RE: tdsdump file always getting created.
  • Date: Wed, 13 Nov 2002 11:56:33 -0600


hi nick,
Thanks... do you know what file or files this fix was implemented in? I
assume that ussetting TDSDUMP will now work with a more recently release of
FreeTDS than I have now? The last snapshot that I down loaded was 30 Oct.
This is working very well for me right now.
thanks again,
john

-----Original Message-----
From: Castellano, Nicholas [mailto:Nicholas_Castellano AT acml.com]
Sent: Wednesday, November 13, 2002 11:47 AM
To: TDS Development Group
Subject: [freetds] RE: tdsdump file always getting created.


A different fix was already implemented when this patch was posted.

Cheers,
--nick

-----Original Message-----
From: bounce-freetds-145195 AT franklin.oit.unc.edu
[mailto:bounce-freetds-145195 AT franklin.oit.unc.edu]
Sent: Wednesday, November 13, 2002 12:41 PM
To: TDS Development Group
Subject: [freetds] RE: tdsdump file always getting created.


hello,
I'm curious if the fix below for turning off tdsdump will be implemented in
the source code. I took a look at the CVS source login.c and this fix below
does not appear to be implemented yet. Are there plans to do so... or is
there a better way to turn off tdsdump? I was under the impression from the
thread that even unsetting TDSDUMP did not work.
thanks
jd


-----Original Message-----
From: Bill Thompson [mailto:thompbil AT exchange.uk.ml.com]
Sent: Friday, November 08, 2002 5:19 AM
To: TDS Development Group
Subject: [freetds] tdsdump file always getting created.


Hi,

I know theer was a thread on this a few days ago.

I hit the same problem, and solved it with the following alteration in
tds_connect().

Before:
/*
** If a dump file has been specified, start logging
*/
if (connect_info->dump_file) {
tdsdump_open(connect_info->dump_file);
}
After:
/*
** If a dump file has been specified, start logging
*/
if (*(connect_info->dump_file)) {
tdsdump_open(connect_info->dump_file);
}

Did someone get round this another way ?

Bill






Archive powered by MHonArc 2.6.24.

Top of Page