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