How do I connect to a SQL Server database in CodeIgniter?

前端 未结 7 1764
轻奢々
轻奢々 2020-12-30 17:17

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.

$         


        
7条回答
  •  轮回少年
    2020-12-30 18:02

    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

提交回复
热议问题