Commit 8016c130850f111770a20e4e9b654ade81e16bec
1 parent
9b04bd83
Added dbType config entry
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2912 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
config/environment.php
| ... | ... | @@ -42,8 +42,8 @@ $default->dbUser = "dms"; |
| 42 | 42 | $default->dbPass = "pass"; |
| 43 | 43 | |
| 44 | 44 | // Change this to reflect the database you are using |
| 45 | -//require("$default->fileSystemRoot/phplib/db_pgsql.inc"); | |
| 46 | -require_once("$default->fileSystemRoot/phplib/db_mysql.inc"); | |
| 45 | +// currently mysql is the only supported type | |
| 46 | +$default->dbType = "mysql"; | |
| 47 | 47 | |
| 48 | 48 | // single db instantiation |
| 49 | 49 | require_once("$default->fileSystemRoot/lib/database/db.inc"); | ... | ... |