PHP Classes

File: db_test.sql

Recommend this page to a friend!
  Classes of Sung-Whi Kim   MySQLi Prepared Statements   db_test.sql   Download  
File: db_test.sql
Role: Auxiliary data
Content type: text/plain
Description: The sql script to create the sample databse
Class: MySQLi Prepared Statements
Execute MySQL queries using prepared statements
Author: By
Last change:
Date: 8 years ago
Size: 926 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.2.7.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jun 23, 2015 at 05:21 PM -- Server version: 5.6.20 -- PHP Version: 5.5.15 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `db_test` -- -- -------------------------------------------------------- -- -- Table structure for table `mytable` -- CREATE TABLE IF NOT EXISTS `mytable` ( `col1` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;