|
|
|
เปลี่ยน ฐานข้อมูล จาก mysql เป็น ms sql 2012 เปลี่ยนโค้ดยังไงครับ |
|
|
|
|
|
|
|
คือผมจะเปลี่ยน ฐานข้อมูล จาก mysql เป็น ms sql 2012 อ่ะครับ มันต้องเปลี่ยนโค้ด
ยังไงครับ ตอนเวลาจะเรียกฐานมันมาใช้
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p>
<?php
$re_name=$_POST['re_name'];
$ip=$_POST['ip'];
$com_name=$_POST['com_name'];
$mac=$_POST['mac'];
$start=$_POST['start'];
$finished=$_POST['finished'];
$remark=$_POST['remark'];
mysql_connect("localhost","root","1234");
mysql_select_db("bic");
mysql_query("SET NAMES UTF8");
$sql="INSERT INTO reguester_ip(re_name,ip,com_name,mac,start,finished,remark)
VALUES('$re_name','$ip','$com_name','$mac','$start','$finished','$remark')";
$rc=mysql_query($sql);
if($rc=="1"){
echo "บันทึกข้อมูลเรียบร้อยแล้ว";
}else{
echo "ไม่สามารถบันทึกข้อมูลได้";
}
}
mysql_close();
?>
</p>
<p align="center"><a href="list.php">ดูข้อมูลการยื่นคำขอ IP</a></p>
</body>
</html>
โค้ดที่ผมใช้อยู่ตอนนี้ ครับ อยากจะเปลี่ยน ฐาน ให้เป็น ms sql 2012 อ่ะครับ
มันเปลี่ยนตรงไหนบ้างครับ #ขอคุณล่วงหน้านะครับ
Tag : PHP, MySQL, Ms SQL Server 2012
|
ประวัติการแก้ไข 2017-02-07 11:35:22
|
|
|
|
|
Date :
2017-02-07 11:31:51 |
By :
puruther |
View :
1122 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "localhost";
$userName = "sa";
$userPassword = '';
$dbName = "mydatabase";
$connectionInfo = array("Database"=>$dbName, "UID"=>$userName, "PWD"=>$userPassword, "MultipleActiveResultSets"=>true);
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn === false ) {
die( print_r( sqlsrv_errors(), true));
}
$sql = "INSERT INTO customer (CustomerID, Name, Email, CountryCode, Budget, Used) VALUES (?, ?, ?, ?, ?, ?)";
$params = array($_POST["txtCustomerID"], $_POST["txtName"], $_POST["txtEmail"], $_POST["txtCountryCode"], $_POST["txtBudget"], $_POST["txtUsed"]);
$stmt = sqlsrv_query( $conn, $sql, $params);
if( $stmt === false ) {
die( print_r( sqlsrv_errors(), true));
}
else
{
echo "Record add successfully";
}
sqlsrv_close($conn);
?>
PHP SQL Server Add/Insert Data Record (sqlsrv)
|
|
|
|
|
Date :
2017-02-07 12:02:03 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำแล้วครัล มึนตึบเลย 5555
พอดีผมย้ายโค้ดไปคอมอีกเครื่องนึง
แต่อีกเครื่องนึง ฐาน มันเป็น ms sql 2012
|
|
|
|
|
Date :
2017-02-07 14:44:55 |
By :
puruther |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างก็มีครับ ค่อยๆ เขียนไปครับ
|
|
|
|
|
Date :
2017-02-07 15:01:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-02-07 15:03:47 |
By :
puruther |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|