private function GET_Ingredients($params = array())
 {
     $search = getParam('search');
     //TODO: Search ingredient titles, both private and public
     //Crappy Query For Testing
     $searchString = $search ? "AND title LIKE " . $this->DB->Quote("%{$search}%") : false;
     $queryString = "SELECT * FROM tblIngredients WHERE userID = {$this->ID} {$searchString} LIMIT 10";
     $query = $this->DB->Query($queryString);
     $result = array();
     if ($query) {
         while ($row = $query->Fetch()) {
             $ingredient = array_key_exists($row['id'], $this->Ingredients) ? $this->Ingredients[$row['id']] : new Ingredient($this, $row);
             $result[$ingredient->ID] = $ingredient->ToArray();
         }
     }
     APIResponse(RESPONSE_200, $result);
 }
 /** @return bool */
 public function UpdateDatabase()
 {
     $queryString = "\n            UPDATE tblBars\n            SET\n                `type` = " . $this->DB->Quote($this->Type) . "\n                , `title` = " . $this->DB->Quote($this->Title) . "\n                , `description` = " . $this->DB->Quote($this->Description) . "\n                , `modifyStamp` = " . microtime(true) . "\n            WHERE id = " . (int) $this->ID . " AND userID = " . (int) $this->Session->ID . "\n        ";
     return (bool) $this->DB->Query($queryString);
 }
/*
 * All this crap switches the environment to run from the testing database and session pool.
 * Pass in /reset, and the database and sessions will be cleared, and a default user will be created.
 * 
 * Magic!
 */
$dbCredentials = 'UnitTestDBCredentials';
if (!file_exists(UNITTESTSESSIONPATH)) {
    mkdir(UNITTESTSESSIONPATH);
}
session_save_path(UNITTESTSESSIONPATH);
if (isset($Path[0]) && $Path[0] == 'reset') {
    $rm = "rm " . UNITTESTSESSIONPATH . "*";
    $rm = `{$rm}`;
    $db = new MySQLDatabase('UnitTestDBCredentials');
    $tables = $db->Query("\n\t\tSELECT table_name AS `table`\n\t\tFROM information_schema.tables\n\t\tWHERE table_schema = " . $db->Quote($UnitTestDBCredentials['name']) . ";\n\t");
    singleLog($tables);
    if ($tables) {
        $db->Query("SET FOREIGN_KEY_CHECKS = 0;");
        while ($table = $tables->Fetch()) {
            singleLog($db->Query("DROP TABLE IF EXISTS " . $table['table'] . ";"));
        }
        $db->Query("SET FOREIGN_KEY_CHECKS = 1;");
    }
    $dump = "mysqldump -u " . $DevDBCredentials['user'] . " -p" . $DevDBCredentials['pass'] . " -d " . $DevDBCredentials['name'] . " | mysql -u " . $UnitTestDBCredentials['user'] . " -p" . $UnitTestDBCredentials['pass'] . " -D" . $UnitTestDBCredentials['name'] . "";
    $dump = `{$dump}`;
    $makeUser = $db->Query("INSERT INTO tblUsers (username, password, accountType, displayName, email) VALUES ('joe', 'nohomohug', 'Standard', 'Joe Testmoore', '*****@*****.**');");
    APIResponse(RESPONSE_200, "Cleared the database and sessions.");
    exit;
}