How do I connect to a SQL Server database in CodeIgniter?
I\'m currently starting an application in CodeIgniter and I would like to use SQL Server.
$
How about this? I've seen it work on some servers. Is this a Windows server?
$db['default']['dbdriver'] = "odbc"; $db['default']['dbprefix'] = ""; $db['default']['pconnect'] = FALSE; $db['default']['db_debug'] = TRUE; $db['default']['cache_on'] = FALSE;
further reading
hope this helps