Etienne Kneuss

home » repository » php » php.net » generateCvslogs.php
Tree:
school
mp3
php
sample
publications
Math_Derivative
Math_Expression
ircbot
php.net
docweb
lsb
check-acronyms.php
spam_tickets.sql.txt
spam-protection.php
genphpt.php
fix-whitespace.php
generrorlinks.php
remove-ordie.php
docbkphp.vim
script-skel.php
cvslogger.php
generateCvslogs.php
images
dump

Source code raw phps

    <?php $query = <<<SQL CREATE TABLE cvslogs (   id            INTEGER       PRIMARY KEY,   cvsuser       varchar(150)  NOT NULL default '',   branch        varchar(20)   NOT NULL default '',   files         text          NOT NULL default '',   log           text          NOT NULL default '',   import_date   timestamp(14) NOT NULL default '0',   comment       text          NOT NULL default '',   flag          integer(10)   NOT NULL default '0' ) SQL; $path = 'sqlite/cvslogs.sqlite'; $idx = sqlite_open($path, 0666); if (!$idx) {     die('Could not open '.$path); } sqlite_query($idx, $query); sqlite_close($idx);

Comments

There is currently no comment here.

Add a comment

Username:

Spam Challenge: 11+15=?

Comment: