README
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. [NOTE: NCBI has made some modifications to this copy of FreeTDS; do
  2. not report bugs to the original authors unless you have confirmed that
  3. they also occur in unmodified versions.]
  4. This is FreeTDS 0.52
  5. FreeTDS is a free (open source) implementation of Sybase's db-lib, 
  6. ct-lib, and ODBC libraries. Currently, dblib and ctlib are most mature.  Both 
  7. of these libraries have several programs known to compile and run against them. 
  8. ODBC is not quite as mature, but may work depending on your needs.
  9. Submissions of test programs (self-contained programs that demonstrate 
  10. functionality or problems) are greatly appreciated.  They should create any
  11. tables needed (since we obviously don't have access to your database) and 
  12. populate them.  One possible exception is test code that works against the 
  13. pubs2 database. Unit tests for any of the libraries is appreciated
  14. FreeTDS will run at protocol versions 4.2, 5.0 and 7.0 and thus can 
  15. access both Sybase and Microsoft SQL-Servers.  Note: Microsoft SQL servers 
  16. do not support TDS version 5.0 and need to be configured with the 
  17. --with-tdsver=4.2 flag.
  18. Support for TDS 7.0 (the version used by MS SQL Server 7.0) is now included. 
  19. It is not as mature as the other protocol versions, but is required to access 
  20. large (more than 255 character) char/varchar fields.  That said, TDS 7.0 
  21. support can be configured by using the --with-tdsver=7.0 when running 
  22. configure.
  23. FreeTDS is licensed under the Gnu LGPL license. See COPYING.LIB for details.
  24. To build look at the INSTALL file.  
  25. Note to FreeBSD users-  You must use 'gmake' to build this package.
  26. Bug submissions
  27. ---------------
  28. If you want your bugs actually fixed in a timely manner (and who doesn't!?), 
  29. any bug submissions (to the mailing list or the bug tracking system) should 
  30. include the following.
  31. 1) a small program demonstrating the problem.  This can be in C, PHP, Perl, or 
  32.    simply the SQL if it is reproducable in SQSH.
  33. 2) The DDL for your table(s) from the SQL above.  A lot of bugs can be 
  34.    particular to one datatype and without this information it'll be hard to
  35.    determine your problem.  A simple list of column names, datatypes, and 
  36.    lengths would also be acceptable if you can't get or don't know how to 
  37.    produce the DDL. (output from sp_help <tablename> will do this nicely)
  38. 3) The version of FreeTDS you are running, but in general try to get the 
  39.    lastest snapshot or CVS version before reporting a bug.
  40. 4) The TDS protocol version.  It's the --with-tdsver flag you configured with
  41.    5.0 is the default.  Many bugs are protocol specific and you may just get
  42.    a 'works for me' if you don't say which version.
  43. 5) Your platform e.g. Redhat 7.0, Solaris 2.6, Linux 2.2.14...anything close 
  44.    will do.  This is especially important if you are on a big endian platform 
  45.    (Power/PowerPC, Sparc, etc...), a 64bit platform (Alpha), or you are 
  46.    experiencing an bus error because of unaligned access (Sparc mostly).
  47.    'uname -a' should produce this info.
  48. 6) The type and version of the server you are connecting to.  Your can send
  49.    the query 'select @@version' to get this information.
  50. Also, be sure to check the FAQ (http://www.freetds.org/faq.html) and mailing 
  51. list archive (http://franklin.oit.unc.edu/cgi-bin/lyris.pl?enter=freetds)
  52. Notes to developers
  53. -------------------
  54. The code is split into several pieces.
  55. 1) tds directory is the wire level stuff, it should be independant of the 
  56. library using it, this will allow DB-Lib, CT-Lib, and ODBC to sit on top. 
  57. 2) dblib directory. This is the actual dblib code which runs on top of tds.
  58. 3) ctlib directory. This is the ctlib code which runs on top of tds. 
  59. 4) server directory. This will be a set of server routines basically to 
  60. impersonate a dataserver, functions like send_login_ack() etc... 
  61. 5) odbc directory. ODBC implementation over tds.  Uses iODBC or unixODBC as a driver manager.  You need to have one of those if you are using the ODBC CLI. 
  62. 6) unittests directories. Test harness code for ctlib, dblib and tds.
  63. 6) samples directories. Sample code for getting started with Perl, PHP, etc...
  64. Please look at doc/getting_started.txt for a description of what is going on
  65. in the code.
  66. Side note: I, as many free software authors, appreciate postcards from all over. So if you live someplace neat (read: not Michigan) and want to send one, email me (camber@ais.org) for my current snail mail address.