PHP Classes

File: DatabaseClsConnection.txt

Recommend this page to a friend!
  Classes of Md. Aminul Islam   Simple Operations   DatabaseClsConnection.txt   Download  
File: DatabaseClsConnection.txt
Role: Auxiliary data
Content type: text/plain
Description: SQL Script to Create Database for this Class
Class: Simple Operations
Build SQL queries from parameters
Author: By
Last change:
Date: 18 years ago
Size: 616 bytes
 

Contents

Class file image Download
-- -- Database: `be_perfect` -- -- -------------------------------------------------------- -- -- Table structure for table `student` -- CREATE TABLE `student` ( `StId` int(11) NOT NULL auto_increment, `StRoll` int(11) NOT NULL default '0', `StMarks` float NOT NULL default '0', PRIMARY KEY (`StId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `student` -- INSERT INTO `student` VALUES (1, 55, 80); INSERT INTO `student` VALUES (2, 25, 65); INSERT INTO `student` VALUES (3, 3, 34); INSERT INTO `student` VALUES (4, 4, 57);