PHP 経由で MS-SQL Server 2008 データベースに接続しましたが、データを変数に抽出したいのですが、どうすればよいですか?
次のコードがあります。
$myServer = "214187-1";
$myUser = "ytuser";
$myPass = "***********";
$myDB = "*********";
//create an instance of the ADO connection object
$conn = new COM ("ADODB.Connection")
or die("Cannot start ADO");
//define connection string, specify database driver
$connStr = "PROVIDER=SQLOLEDB;SERVER=".$myServer.";UID=".$myUser.";PWD=".$myPass.";DATABASE=".$myDB;
$conn->open($connStr); //Open the connection to the database
//declare the SQL statement that will query the database
$query = "SELECT FacebookAppID, FacebookAppSecret, TwitterConsumerKey, TwitterConsumerSecret, LinkedinAPIKey, LinkedinSecretKey FROM Systems WHERE SystemID = " $G_SYSTEMID;
$FacebookAppID = ;
$FacebookAppSecret = ;
$TwitterConsumerKey = ;
$TwitterConsumerSecret = ;
$LinkedinAPIKey = ;
$LinkedinSecretKey = ;
$rs->Close();
$conn->Close();
$rs = null;
$conn = null;
どんな助けでも大歓迎です..
ネオジャキー