Author: dr
Date: Fri Aug 17 13:51:52 2007
New Revision: 5930

Log:
- Fixed bug #11282: DatabaseSchema's SQLite reader doesn't understand the
  float and varchar data types.

Modified:
    trunk/DatabaseSchema/ChangeLog
    trunk/DatabaseSchema/src/handlers/sqlite/reader.php

Modified: trunk/DatabaseSchema/ChangeLog
==============================================================================
--- trunk/DatabaseSchema/ChangeLog [iso-8859-1] (original)
+++ trunk/DatabaseSchema/ChangeLog [iso-8859-1] Fri Aug 17 13:51:52 2007
@@ -5,6 +5,8 @@
   name instead of only the database handler.
 - Fixed bug #11281: DatabaseSchema's XML reader does not understand '1' for
   the notnull, autoincrement and unsigned fields.
+- Fixed bug #11282: DatabaseSchema's SQLite reader doesn't understand the
+  float and varchar data types.
 
 
 1.2 - Monday 02 July 2007

Modified: trunk/DatabaseSchema/src/handlers/sqlite/reader.php
==============================================================================
--- trunk/DatabaseSchema/src/handlers/sqlite/reader.php [iso-8859-1] (original)
+++ trunk/DatabaseSchema/src/handlers/sqlite/reader.php [iso-8859-1] Fri Aug 17 
13:51:52 2007
@@ -25,7 +25,9 @@
         'integer' => 'integer',
         'integer unsigned' => 'integer',
         'real' => 'float',
+        'float' => 'float',
         'text' => 'text',
+        'varchar' => 'text',
         'blob' => 'blob',
         'clob' => 'clob',
         'boolean' => 'boolean',


-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to