[Solar-svn] Revision 3213
pmjones at solarphp.com
pmjones at solarphp.com
Tue Jun 10 11:17:35 CDT 2008
Solar_Sql_Adapter_Sqlite2: [NEW] Adapter for legacy sqlite2 databases.
Modified: trunk/Solar/Sql/Adapter/Sqlite.php
===================================================================
--- trunk/Solar/Sql/Adapter/Sqlite.php 2008-06-10 13:12:09 UTC (rev 3212)
+++ trunk/Solar/Sql/Adapter/Sqlite.php 2008-06-10 16:17:35 UTC (rev 3213)
@@ -1,7 +1,7 @@
<?php
/**
*
- * Class for connecting to SQLite databases.
+ * Class for connecting to SQLite (version 3) databases.
*
* @category Solar
*
Added: trunk/Solar/Sql/Adapter/Sqlite2.php
===================================================================
--- trunk/Solar/Sql/Adapter/Sqlite2.php (rev 0)
+++ trunk/Solar/Sql/Adapter/Sqlite2.php 2008-06-10 16:17:35 UTC (rev 3213)
@@ -0,0 +1,27 @@
+<?php
+/**
+ *
+ * Class for connecting to SQLite (version 2) databases.
+ *
+ * @category Solar
+ *
+ * @package Solar_Sql
+ *
+ * @author Paul M. Jones <pmjones at solarphp.com>
+ *
+ * @license http://opensource.org/licenses/bsd-license.php BSD
+ *
+ * @version $Id: Sqlite.php 3210 2008-06-09 23:50:06Z pmjones $
+ *
+ */
+class Solar_Sql_Adapter_Sqlite2 extends Solar_Sql_Adapter_Sqlite
+{
+ /**
+ *
+ * The PDO adapter type.
+ *
+ * @var string
+ *
+ */
+ protected $_pdo_type = 'sqlite2';
+}
\ No newline at end of file
More information about the Solar-svn
mailing list