Re: issue with stored proc parameters of type varchar
"Frediano Ziglio" <[email protected]>
| Newsgroups | gmane.comp.db.tds.freetds |
|---|---|
| Message-ID | <[email protected]> |
2009/1/4 <[email protected]>: > HNY everyone. > I suppose to get to the bottom of this it might help to step through the > ct and tds source code in the debugger. > Does anybody have a few quick pointers as to how to build the libraries > from the freetds distribution with symbolic information? > Is there configure setting or environment variable or so that I can set? > > tia > Tim > Hi, as usual you can define CFLAGS before configure in a way like CFLAGS='-O0 -g' ./configure ...options... (-O0 is suitable to debug environment, too much optimization increase debug difficulties) freddy77