Revision history for Perl extension DBD-FB.

1.39 February 19, 2008 (colin@frontbase.com)

	- Added fb_digest_password function.
	- Added fb_type=>99 for binding SQL identifiers.
	
1.38 November 1, 2007 (colin@frontbase.com)

	- Tidy up.
	- Removed redundancies.
	- FB.xs now uses FB.xsi. This also fixes build errors with the latest DBI.

1.37 April 24, 2007 (colin@frontbase.com)

	- Fixed statement attribute TYPE so it returns the correct ODBC type codes.
	- Fixed statement attribute fb_size so the correct lengths are returned.
	- Fixed statement method 'rows' so that -1 is returned when the number of rows is unknown.
	- Fixed database method type_info_all to return correct info
	- Fixed stripping spaces on fixed character data when 'ChopBlanks' is true.
	- Fixed tests to use DBI_xxx environment variables.
	- Added support for database method 'get_info'.
	- Altered transaction behaviour to remove redundant commits and rollbacks when in autocommit mode.
	- Added support for specifying the port number as part of the connect string.
	- Added support for the database handle attribute 'Name'.
	- Now returns warnings when 'PrintWarn' is true.
	- Added support for statement attribute PRECISION.
	- Added support for statement attribute SCALE.
	- Added support for statement attribute NULLABLE.

1.36 March 9, 2007 (colin@frontbase.com)

	- Prepping for uploading to CPAN.
	- Reviewing against DBI 1.54 for supported functionality, bugs and items that need adding.
	- Added a new set of tests based on Pg driver tests.
	- Updated docs.
 	- Added TODO.

1.35 July 25, 2006 (colin@frontbase.com)

	- Tidied up errors and warnings compiling on some platforms.
	- Added better resolution of hostname for test.pl.
	- Updated README to clarify installation.

1.34 July 21, 2005 (colin@frontbase.com)

	- Removed input character set of Latin1. Default encoding for input and output strings is UTF8 for both OSX and Win32.
	- To revert to Latin1 (Win32 only) comment out the following lines in dbdimp.c and rebuild :
	
		fbcdcSetInputCharacterSet(imp_dbh->conn, FB_Undefined);
		fbcdcSetOutputCharacterSet(imp_dbh->conn, FB_Undefined);

1.33 Dec 10, 2004 (colin@frontbase.com)

	- Added support for binding DATE, TIME and TIMESTAMP types.
	- Win32 changes

1.32 Nov 4, 2004 (colin@frontbase.com)

	- Fixed empty/null LOB value transfer. Also ensure returned CLOBs are null terminated.

1.31 Oct 29, 2004 (colin@frontbase.com)
	- Added support for CLOB/BLOB columns. These can now be inserted using placeholders and returned using bind_column. $sth->blob_read has also been implemented to retreive BLOB data in chunks.

1.3 Mar 17, 2004 (colin@frontbase.com)
	- Fixed Win32 incompatiblities.

1.2 2003.01.03 (ryan@frontbase.com)
   - We were freeing the dbname before we were done with it which was causing a crash since we were using it as the session name. This was causing a crash of both the driver and the database.  Now we don't free the dbname until we are done with it.  Additionally, we use "Perl::DBI" as the session name rather than the database name.  
   - Added a few example script in the Examples directory.
   - Update the version to be 1.2 which is more inline with how we've been releasing this driver publicly.
   - Fixed test.pl to turn AutoCommit off so that the tests for commit and rollback will not issue a warning.

0.05 Jul 27, 2001 (ibh@frontbase.com)
   - Imported into CVS
   - Removed use of fsmInitialize and fb_... memory routines

0.04.ed	Jan 10, 2000 (eike@ilink.de)
	- removed the fetch limit, refetches now if more data needed
	- refactored dbd_st_FETCH_attrib() to use fb_type_name() (table lookup instead of big if()), please recheck if these types are really all correct for frontbase (hmm)
	- dbd_st_fetch() to use getVal(), rewrote that stuff, added at least a little memory management, removed obscure code for FB_VBit, so FB_VBit does not currently longer (if it ever did)!
	- reformated source in ProjectBuilder (oops does not seem to work too good with this code)
	- made 2147483647L a const, still unclear what this does, probably a leftover from DBD-Pg
	- added some FIXME's where apropriate

0.03
0.04 ??
	- ported to FB2.0 (Makefile.PL)

0.01   Jun 12, 1999
	- creation, ( totally pre-alpha ! )