On Sat, Jan 03, 2004 at 06:00:23PM -0800, Tom Jackson wrote: > How do you compile the odbc driver? There is the RedBrick option and > generic. Generic needs sql.h, and other headers. I guess I need some > other package somewhere?
You definitely need a 3rd party ODBC "driver manager" in order to use nsodbc, and I think in order to compile it at all. At least, back c. Sept. 2001 when I briefly used nsodbc with some commercial ODBC software, in my nsodbc makefile I did: ODBC = /path-to-commercial-software/odbc MODLIBS = -L$(ODBC)/lib -lodbc CFLAGS = -I$(ODBC)/include -DODBC On unix, there are two or so different open source ODBC projects that you should be able to use for this, but I've never tried them. MS Windows (which version, NT?) includes an ODBC driver manager so on Windows, here are some really ancient notes on that: http://aolserver.am.net/asnotes/odbc.html -- Andrew Piskorski <[EMAIL PROTECTED]> http://www.piskorski.com/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
