Created
November 25, 2013 14:44
-
-
Save KimiyukiYamauchi/7642242 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'MDB2.php'; | |
//$db = MDB2::connect('mysql://s11011:password@localhost/db11'); | |
$db = MDB2::connect('oci8://s11011:[email protected]:1521/?service=db11'); | |
if (MDB2::isError($db)) { die("connection error: " . $db->getMessage()); } | |
$q = $db->query("CREATE TABLE dishes ( | |
dish_id INT, | |
dish_name VARCHAR(255), | |
price DECIMAL(4,2), | |
is_spicy INT | |
)"); | |
print "OK!"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment