Hi, I need to clear table (10000+ records). Is it possible to use TRUNCATE TABLE query from Phalcon?
Yes, its perfectly fine.
$sql = 'TRUNCATE TABLE `robots`'; $success = $connection->execute($sql);
Thank you!