2016-03-28 94 views
-6

我想笨3与Microsoft SQL Server 2008连接笨3的MS SQL Server

连接,但我收到提示服务器错误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 
); 

我试图用MS SQL连接简单的PHP核心文件的代码,它是连接成功。

以下是核心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

“* ..我想PHP脚本MS SQL Server 2008中*连接”。那么,你的代码在哪里?我们不能假设你的代码。我们不会坐下来观看那个视频。而且,“* ..我仍然有同样的错误。*”。什么错误? –

+0

是的,这是可能的,相信我! – rray

+0

你有没有考虑过先学习php? – SnakeFoot

回答

1

如果使用CodeIginiter成功连接到MS SQL服务器,则不需要代码第2部分中的第二个连接。只需拨打$this->db->query("INSERT INTO ....")就是这样。 CI为你完成剩下的工作。 (删除odbc_connectodbc_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