Changeset 4969

Show
Ignore:
Timestamp:
05/16/08 03:15:12 (5 months ago)
Author:
FND
Message:

Plugin Library: added testing framework (SimpleTest?)

Location:
Trunk/contributors/FND/tools/pluginLibrary
Files:
135 added
1 modified

Legend:

Unmodified
Added
Removed
  • Trunk/contributors/FND/tools/pluginLibrary/dbq.php

    r4914 r4969  
    66                        or die(mysql_error()) 
    77                        or die("Could not connect: " . mysql_error()); 
    8                 //echo "connected to MySQL server " . $conn . "\n"; // DEBUG'd 
    98                $db = mysql_select_db($db, $conn) 
    109                        or die(mysql_error()) 
    1110                        or die("Could not connect to " . $db . " " . mysql_error()); 
    12                 //echo "connected to database " . $db . "\n"; // DEBUG'd 
    1311                return $db; 
    1412        }