Subversion Repositories phpLibraryV2

Rev

Rev 15 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15 Rev 16
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
   /*
3
   /*
4
    * Class DBQuery
4
    * Class DBQuery
5
    * 
5
    * 
6
    * PHP Class as a wrapper around the PDO class. Allows you to make
6
    * PHP Class as a wrapper around the mysqli class. Allows you to make
7
    * the connection and run queries and/or DDL's if needed with the
7
    * the connection and run queries and/or DDL's if needed with the
8
    * most common parameters (ie, not as flexible as PDO itself).
8
    * most common parameters (ie, not as flexible as mysqli itself).
9
    * Enhancements include:
9
    * Enhancements include:
10
    *
10
    *
11
    * Logs all queries with an optional username except select statements
11
    * Logs all queries with an optional username except select statements
12
    * ie, anything that will change the system ( insert, delete, update,
12
    * ie, anything that will change the system ( insert, delete, update,
13
    * create, drop, alter, etc... ). Statement are logged with a date/time
13
    * create, drop, alter, etc... ). Statement are logged with a date/time