Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have looked at other topics, and I can't figure out whats wrong here. If I replace the TRUNCATE query with a simple SELECT * for example, I do get results. But this returns false. I copied the following code from this topic hoping to get a result: PHP & MySQL: Truncate multiple tables

And I am doing this through AMFPHP.

# the host used to access DB
define('DB_HOST', 'localhost');

# the username used to access DB
define('DB_USER', 'usr');

# the password for the username
define('DB_PASS', '***');

# the name of your databse
define('DB_NAME', 'name');

//$connection = new __database(DB_HOST,DB_USER,DB_PASS,DB_NAME);


$connection = new mysqli(DB_HOST,DB_USER,DB_PASS,DB_NAME);

if (mysqli_connect_errno())
{
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query = "TRUNCATE TABLE `books`";

$result = $connection->query($query);
if($result)
{
    return $result;
}
else
{
    return false;
}
share|improve this question

2 Answers

up vote 1 down vote accepted

Does the MySQL user have the required privalages to truncate the table? From the MySQL docs:

[TRUNCATE] requires the DROP privilege as of MySQL 5.1.16. (Before 5.1.16, it requires the DELETE privilege).

Edit: not having the privalage would generate an error of some kind - are you logging or are able to see any query errors?

share|improve this answer
Thanks, that was it. Didn't know that, I always assumed DELETE would suffice. You saved me some time :-) – Sten Van den Bergh Jun 26 '11 at 12:31
Awesome, glad to help! :) – Bulk Jun 26 '11 at 12:32

According to the documentation, "Truncation operations do not return a meaningful value for the number of deleted rows. The usual result is “0 rows affected,” which should be interpreted as “no information.” See http://dev.mysql.com/doc/refman/5.0/en/truncate-table.html

So, it looks like your if statement will go down the else path even if the truncate is successful.

share|improve this answer
When I changed the privileges as stated above, the result returned true. – Sten Van den Bergh Jun 26 '11 at 12:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.