Skip to content

Commit

Permalink
#906: Implement SQLite3 driver.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Jun 16, 2016
1 parent 5acb874 commit df47877
Show file tree
Hide file tree
Showing 2 changed files with 563 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/dblayer/common_db.php
Expand Up @@ -38,6 +38,10 @@
require_once PUN_ROOT.'include/dblayer/sqlite.php';
break;

case 'sqlite3':
require_once PUN_ROOT.'include/dblayer/sqlite3.php';
break;

default:
error('\''.$db_type.'\' is not a valid database type. Please check settings in config.php.', __FILE__, __LINE__);
break;
Expand Down

0 comments on commit df47877

Please sign in to comment.