चूंकि डेटाबेस अब MySQL नहीं है, इसलिए आपको कुछ ऐसे कोड को फिर से लिखना होगा जो MySQL फ़ंक्शन का उपयोग करते हैं। यह आसानी से पीडीओ (PHP डेटा ऑब्जेक्ट) के साथ किया जाता है और भविष्य के परिवर्तनों के लिए कहीं अधिक पोर्टेबल है।
इसे देखें SQL सर्वर उदाहरण :
<?php
$user = 'myUsername';
$pass = 'myPassword';
// Connect to mssql database
$conn = new PDO('mssql:host=127.0.0.1; dbname=tempdb;', $user, $pass);
$query = "SELECT * FROM table1";
// Prepare query and run it. This is where you can use prepared statements
// to avoid SQL injection
$sth = $conn->prepare($query);
$sth->execute();
// Fetch the returned db rows and dump them as output
$retRows = $sth->fetchAll();
var_dump($retRows);
// Clean up resources
unset($sth); unset($conn);
?>
कहीं भी आपको mysql_*
. जैसा कोई फ़ंक्शन मिलता है अपने कोड में, आप PDO का उपयोग करके ऐसा करने का उचित तरीका खोजना चाहेंगे।
।