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