"Fossies" - the Fresh Open Source Software Archive

Member "mod_sqlinclude-1.4/test.sql" (14 Jan 2002, 667 Bytes) of package /linux/www/apache_httpd_modules/old/mod_sqlinclude-1.4.tgz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PL/SQL source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 # MySQL dump 8.14
    2 #
    3 # Host: localhost    Database: test
    4 #--------------------------------------------------------
    5 # Server version    3.23.38-log
    6 
    7 #
    8 # Table structure for table 'email'
    9 #
   10 
   11 DROP TABLE IF EXISTS email;
   12 CREATE TABLE email (
   13   data TEXT default NULL,
   14   ip varchar(32) default '213.25.201.2'
   15 ) TYPE=MyISAM;
   16 
   17 #
   18 # Dumping data for table 'email'
   19 #
   20 
   21 INSERT INTO email VALUES ('<VirtualHost 213.25.201.10>\nServerName test1.geek-stuff.com\nDocumentRoot /home/carlos/test1\n</VirtualHost>','213.25.201.10');
   22 INSERT INTO email VALUES ('<VirtualHost 213.25.201.10>\nServerName test2.geek-stuff.com\nDocumentRoot /home/carlos/test2\n</VirtualHost>','213.25.201.10');
   23