我正在尝试将Codeigniter 3与Microsoft SQL Server 2008连接
但我收到错误服务器错误500 。
我附上了database.php的代码
$db['default'] = array(
'dsn' => 'Driver={SQL Server Native Client 10.0};Server=(local);Database=my_db;',
'hostname' => '(local)',
'port' => '',
'username' => '',
'password' => '',
'database' => '',
'dbdriver' => 'odbc', // or mssql or sqlsrv
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => TRUE,
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
//'autoinit' => TRUE,
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
我尝试将简单的核心php文件与MS SQL连接,并且连接成功。
以下是核心PHP文件代码。
<?php
// Replace the value of these variables with your own data
$user = '';
$pass = '';
$server = "(local)";
$database = 'h2g2';
// No changes needed from now on
$connection_string = "DRIVER={SQL Server};SERVER=$server;DATABASE=$database";
$conn = odbc_connect($connection_string,$user,$pass);
if ($conn) {
echo "Connection established.";
$sql = "INSERT INTO hg_users (u_uuid,u_name, u_email,u_new_email,u_password,u_display_name,u_forgot_token,u_forgot_token_request_time,u_verify_token,u_verified,u_last_login_date,u_last_login_ip,u_created_date,u_modified_date,u_status)
VALUES ('1231233', '123123123 sdfsdfdsdf','ASsASas','asdasd','asd','ewrt','fgh','sdfgsasd','asdasd','2','zx','ZXcZX','aSzxCASD','ASDzxzx','1');";
$result = odbc_exec($conn,$sql);
echo "<pre>";print_r($result);
die;
} else{
die("Connection could not be established.");
}
?>
我正在使用PHP 5.6和Sql server 2008与Xampp,Windows 7 32位。
答案 0 :(得分:1)
如果使用CodeIginiter成功连接到MS SQL服务器,则不需要代码第2部分中的第二个连接。只需致电$this->db->query("INSERT INTO ....")
即可。 CI为您完成剩下的工作。 (删除odbc_connect
和odbc_exec
)并使用内置的CI数据库类。
您的代码看起来像这样
$sql = "INSERT INTO hg_users (u_uuid,u_name, u_email,u_new_email,u_password,u_display_name,u_forgot_token,u_forgot_token_request_time,u_verify_token,u_verified,u_last_login_date,u_last_login_ip,u_created_date,u_modified_date,u_status)
VALUES ('1231233', '123123123 sdfsdfdsdf','ASsASas','asdasd','asd','ewrt','fgh','sdfgsasd','asdasd','2','zx','ZXcZX','aSzxCASD','ASDzxzx','1');";
// runs the query to your MS SQL connection (automatically)
$this->db->query($sql);
参考:
https://ellislab.com/codeIgniter/user-guide/database/examples.html