• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-18,48916,324

include/H03-May-2022-14,76411,570

m4/H31-Aug-2021-10,4489,425

misc/H03-May-2022-541471

samples/H03-May-2022-976754

src/H03-May-2022-145,305110,152

vms/H03-May-2022-5,2203,813

win32/H03-May-2022-680574

AUTHORS.mdH A D09-Jul-20192.7 KiB10973

BUGS.mdH A D09-Jul-2019310 118

ChangeLogH A D31-Aug-20212.8 KiB9962

INSTALL.mdH A D09-Jul-2019782 3021

Makefile.amH A D03-May-20222.1 KiB6644

Makefile.inH A D31-Aug-202129 KiB922814

NEWS.mdH A D17-May-202129.8 KiB758712

PWD.inH A D26-Jan-2015762 2019

README.mdH A D17-May-20213.1 KiB8862

TODO.mdH A D09-Jul-20195.7 KiB153130

Thanks-1.0H A D18-Apr-20161 KiB4241

aclocal.m4H A D31-Aug-2021160.6 KiB4,5384,223

autogen.shH A D26-Jan-20151.5 KiB4515

compileH A D31-Aug-20217.2 KiB349259

config.guessH A D31-Aug-202143.9 KiB1,5091,310

config.rpathH A D26-Jan-201517.9 KiB667563

config.subH A D31-Aug-202130.8 KiB1,7961,639

configureH A D03-May-2022705.8 KiB24,61020,784

configure.acH A D31-Aug-202131.6 KiB1,010902

depcompH A D31-Aug-202123 KiB792502

freetds.confH A D27-Oct-20181.1 KiB4215

freetds.conf.sampleH A D27-Oct-20181.1 KiB4234

freetds.specH A D31-Aug-20214.1 KiB148112

freetds.spec.inH A D09-Jul-20194.1 KiB148115

install-shH A D31-Aug-20216.6 KiB302199

interfacesH A D26-Jan-20152.3 KiB6762

locales.confH A D26-Jan-2015370 2418

locales.conf.sampleH A D26-Jan-2015370 2418

ltmain.shH A D31-Aug-2021316.8 KiB11,1637,994

missingH A D31-Aug-20216.7 KiB216143

mkinstalldirsH A D21-Jun-2015729 4123

tds.doxH A D20-Aug-2017773 2927

test-driverH A D31-Aug-20214.5 KiB14987

README.md

1README for FreeTDS 1.4.dev (development)
2====
3
4*Release date TBD*
5
6**To build FreeTDS read the file [INSTALL](./INSTALL.md) or
7the [FreeTDS Users Guide](http://www.freetds.org/userguide/)**
8
9FreeTDS is a free implementation of Sybase's DB-Library, CT-Library,
10and ODBC libraries. FreeTDS builds and runs on every flavor of
11unix-like systems we've heard of (and some we haven't) as well as
12Win32 (with or without Cygwin), VMS, and Mac OS X.  Failure to build
13on your system is probably considered a bug.  It has C language
14bindings, and works also with Perl and PHP, among others.
15
16FreeTDS is licensed under the GNU LGPL license. See [COPYING_LIB.txt](./COPYING_LIB.txt) for
17details.
18
19Other files you might want to peruse:
20
21* [AUTHORS](./AUTHORS.md)  Who's involved
22* [BUGS](./BUGS.md)        Some things we fixed, or think we did
23* [NEWS](./NEWS.md)        Summary of feature changes and fixes
24* [TODO](./TODO.md)        The roadmap, such as it is
25
26Also, [api_status](./doc/api_status.txt) shows which functions are implemented.
27
28For details on what's new in this version, see NEWS.  For unbearable
29detail, see git log.
30
31Documentation
32=============
33
34A User Guide, in XML and HTML form, is included in this distribution.
35Also included is a reference manual, generated in HTML with Doxygen.
36"make install" installs the HTML documentation, by default to
37/usr/local/share/doc/freetds-<version>.
38
39
40Note to Users
41=============
42
43Submissions of test programs (self-contained programs that demonstrate
44functionality or problems) are greatly appreciated.  They should
45create any tables needed (since we obviously don't have access to your
46database) and populate them.  Unit tests for any of the libraries
47is appreciated
48
49Notes to Developers
50===================
51
52The code is split into several pieces.
53
541. `tds` directory is the wire level stuff, it should be independent of
55   the library using it, this will allow db-lib, ct-lib, and ODBC to
56   sit on top.
57
582. `db-lib` directory. This is the actual db-lib code which runs on top of
59   tds.
60
613. `ct-lib` directory. This is the ct-lib code which runs on top of tds.
62
634. `server` directory. This will be a set of server routines basically
64   to impersonate a dataserver, functions like send_login_ack() etc...
65
665. `odbc` directory. ODBC implementation over tds.  Uses iODBC or
67   unixODBC as a driver manager.  You need to have one of those if you
68   are using the ODBC CLI.
69
706. `unittests` directories. Test harness code for ct-lib, db-lib, ODBC and
71   libtds.
72
737. `samples` directories. Sample code for getting started with Perl,
74   PHP, etc...
75
768. `pool` directory. A connection pooling server for TDS.  Useful if you
77   have a connection limited license.  Needs some hacking to get
78   configured but is quite stable once configured correctly. Contact
79   the list if interested in how to use it.
80
81Please look at doc/getting_started.txt for a description of what is
82going on in the code.
83
84Side note: Brian, as many free software authors, appreciates postcards
85from all over. So if you live someplace neat (read: not Michigan) and
86want to send one, email him (brian@bruns.org) for his current snail mail
87address.
88