PHP Classes

File: class_database.dmp

Recommend this page to a friend!
  Classes of Bimal Poudel   MySQL access class   class_database.dmp   Download  
File: class_database.dmp
Role: Auxiliary data
Content type: text/plain
Description: basic database dump
Class: MySQL access class
MySQL database access wrapper
Author: By
Last change:
Date: 15 years ago
Size: 2,868 bytes
 

Contents

Class file image Download
-- MySQL dump 10.13 Distrib 5.1.30, for Win32 (ia32) -- -- Host: localhost Database: class_database -- ------------------------------------------------------ -- Server version 5.1.30-community /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `domains` -- DROP TABLE IF EXISTS `domains`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `domains` ( `domain_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `domain_name` varchar(255) NOT NULL DEFAULT '', `domain_server` varchar(255) NOT NULL DEFAULT '', `domain_comments` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`domain_id`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `domains` -- LOCK TABLES `domains` WRITE; /*!40000 ALTER TABLE `domains` DISABLE KEYS */; INSERT INTO `domains` VALUES (1,'','kushal.com.np','Kushal\'s personal website'),(2,'','sanjaal.com','The Network'),(3,'blog','sanjaal.com','Blog'),(4,'calendar','sanjaal.com','Calendar'),(5,'gallery','sanjaal.com','Photo Gallery'),(6,'ganthan','sanjaal.com','Ganthan - My talks'),(7,'h1b','sanjaal.com','H1B Visa'),(8,'java','sanjaal.com','Java'),(9,'links','sanjaal.com','Links'),(10,'taggedmails','sanjaal.com','Funny jokes and emails'),(11,'tube','sanjaal.com','Tubed Video'),(12,'partners','sanjaal.com','Partners'),(13,'','arjun.net.np','Arjun Paudyal, a personal profile'),(14,'','phss.edu.np',''),(15,'','sitbim.com','Services in Information Technology and Business Intelligence Management'),(16,'learn-php','sitbim.com','Learn PHP in Kathmandu, with certified professionals'),(17,'know-bimal','sitbim.com','Refer Bimal Poudel'); /*!40000 ALTER TABLE `domains` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2009-01-24 5:56:05