Jump to content

Unable to clear table


siric

Recommended Posts

Hi,

 

I am inserting temporary values into a table for use on a resultset.  Once I am done I want to clear the data out of the table and have used both

 

//clear tempbiz table
$sqlClearBiz = "DELETE from tempbiz";
$resClearBiz = mysql_query($sqlClearBiz);

 

and

 

//clear tempbiz table
$sqlClearBiz = "TRUNCATE tempbiz";
$resClearBiz = mysql_query($sqlClearBiz);

 

but neither work.  However, I run the command in an SQl client, it works.

 

What can I check??

Link to comment
https://forums.phpfreaks.com/topic/183814-unable-to-clear-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.