| 
<?php
include 'dbquery.class.php';
 $db = new dbQuery;
 
 echo $db->selectQ('tbl_test');
 //   echo $db->selectQ('tbl_test', array('a', 'b', 'c', 'd'));
 //   echo $db->selectQ('tbl_test', array('a', 'b', 'c', 'd'), array('xyz' => 1, 'abc' => 2));
 //   echo $db->insertQ('tbl_test', array('a' => 1, 'b' => 2));
 //   echo $db->updateQ('tbl_test', array('a' => 1, 'b' => 2), array('x' => 32, 'y' => 43), FALSE);
 //   echo $db->updateQ('tbl_test', array('a' => 1, 'b' => 2), NULL, TRUE);
 //   echo $db->deleteQ('tbl_test', array('z' => 1), FALSE);
 //   echo $db->deleteQ('tbl_test', NULL, TRUE);
 ?>
 
 |