From: Reini U. <ru...@x-...> - 2004-05-06 08:09:22
|
shreedhar schrieb: > Is wiki 1.3.3 supports MSSQLServer. If it supports what will be the > configuration in index.php. Same as with all other databases: define PearDB, ADODB can only be used for mysql (all others since 1.3.10, which is not released yet) $DbParams['dbtype'] = 'SQL'; $DbParams['dsn'] = 'mssql://username@hostspec/database'; But you can also try to use ODBC $DbParams['dsn'] = 'odbc://username@localhost/global_dsn'; Look at lib/pear/DB/mssql.php and lib/pear/DB/odbc.php -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |