This is FreeTDS 0.1

FreeTDS is a free (open source) implementation of Sybase's db-lib library.
It is very primitive right now but you can actually run a queries against a 
real Sybase server and get results back! 

It is licensed under the Gnu LGPL license. See COPYING.LIB for details.

Notes to developers

The code is split into several pieces.

1) tds directory is the wire level stuff, it should be independant of the library using it, this will allow DB-Lib, CT-Lib, and ODBC to sit on top. (actually it is geared towards dblib at the moment...but this should change after other libraries are implemented).

2) dblib directory. This is the actual dblib code.

3) ctlib, odbc, jdbc. Other planned CLIs to sit over tds, nothing written yet.  Feel free.

4) unittest.c in each directory is test harness code.

All the client.whatever are dumps of what comes back from the server. The .txt ones are annotated more or less.  (These were written by tds/debug.c)

There is some other miscellaneous nonsense in there that can safely be ignored.

