Example #1
0
    /**
     * Truncate myassets table
     * @return void
     */
    public static function Truncate()
    {
        // Get the Database Object for this Class
        $objDatabase = Myassets::GetDatabase();
        // Perform the Query
        $objDatabase->NonQuery('
				TRUNCATE `myassets`');
    }