Login   Register  
PHP Classes
elePHPant
Icontem

File: example_create_table.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Evert Ulises German Soto  >  PDO Multi Connection Class  >  example_create_table.php  >  Download  
File: example_create_table.php
Role: Example script
Content type: text/plain
Description: example_create_table.php
Class: PDO Multi Connection Class
Access different types of SQL database using PDO
Author: By
Last change:
Date: 2012-08-08 15:27
Size: 760 bytes
 

Contents

Class file image Download
<?php
require("pdo_database.class.php");

$db = new wArLeY_DBMS("mysql""127.0.0.1""test""root""""");
$dbCN $db->Cnxn(); //This step is really neccesary for create connection to database, and getting the errors in methods.
if($dbCN==false) die("Error: Cant connect to database.");
echo 
$db->getError(); //Show error description if exist, else is empty.

$db->query('DROP TABLE IF EXISTS TB_USERS;'); //drop table if exist
$query_create_table = <<< EOD
CREATE TABLE TB_USERS (
  ID INT(11) NOT NULL AUTO_INCREMENT,
  NAME VARCHAR(100) NOT NULL,
  ADDRESS VARCHAR(100) NOT NULL,
  COMPANY VARCHAR(100) NOT NULL
);
EOD;

$db->query($query_create_table);
$db->query("ALTER TABLE TB_USERS ADD SEX CHAR(1);");
$db->disconnect();
?>