コード例 #1
0
ファイル: UserGen.class.php プロジェクト: eliud254/q-auction
    /**
     * 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`');
    }