Update of /cvsroot/squirrel-sql/sql12/doc
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv16571/doc
Modified Files:
changes.txt
Log Message:
Added support for SQLite by introducing a GenericDialect, which is a minimal bare-bones dialect that should be usable for databases that we don't yet have full-featured dialects for. Also, since SQLite JDBC (as well as SQLite itself) doesn't support column type information like most database drivers, a new backup mechanism that keys off of Types.NULL to reverse map to the code using the column type name was added. So, if a ResultSetMetaData reports a column type to be Types.NULL, but the column type name is, say, integer, then the type will be converted to Types.INTEGER. If the type name doesn't correspond to a Type by name, then the type will be converted to Types.VARCHAR. In this fashion, SQLite table data can be edited using both the contents tab as well as SQL results tab.
Index: changes.txt
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/doc/changes.txt,v
retrieving revision 1.440
retrieving revision 1.441
diff -C2 -d -r1.440 -r1.441
*** changes.txt 6 Jun 2008 00:21:44 -0000 1.440
--- changes.txt 19 Jun 2008 22:58:29 -0000 1.441
***************
*** 76,79 ****
--- 76,81 ----
Bug-Fixes:
+ Fixed several bugs which made it impossible to work with SQLite.
+
Updated Italian translation (Ivo Neri)
|