mysql_fetch_row(): supplied argument is not a valid MySQL result resource in [duplicate]
I am getting the error (mysql_fetch_row(): supplied argument is not a valid MySQL result resource in) for this query. Why?
<?php
set_time_limit(0);
//MySQL globals
$mysql_server = "***";//change this server for your Drupal installations
$mysql_user = "***";//Ideally, should be root
$mysql_pass = "***";//Corresponding password
$conn = mysql_connect($mysql_server,$mysql_user,$mysql_pass);//MySQL connection string
$query = "select * from dr_wiwe_old_node WHERE type = 'story'";
$noders = mysql_query($query);
var_dump($noders);
while ($row = mysql_fetch_row($noders)) {
$nid = $row[0];
$vid = $row[1];
$type = $row[2];
$title = mysql_real_escape_string($row[3]);
$uid = $row[4];
$status = $row [5];
$created = $row[6];
$changed = $row[7];
$comment = $row[8];
$promote = $row[9];
$moderate = $row[10];
$sticky = $row[11];
//Insertion into node
$query="insert into dr_wiwe_node values('" . $nid . "','"
. $vid . "','" . $type . "','','" . $title . "','" . $uid . "','"
. $status . "','" . $created . "','" . $changed . "','" . $comment
. "','" . $promote . "','" . $moderate . "','" . $sticky . "','0','0')";
if (!mysql_query($query)) {
print $query;
}
?>
Where is the error or what can I change?
When you execute a query, check the return value of the function. If it's false
then there was an error with your query.
$noders = mysql_query($query);
if ($noders === false) {
error_log(mysql_error());
}
Errors can occur for various reasons, including:
- You are not connected to the MySQL server.
- You have not selected the right database with
mysql_select_db()
, so MySQL doesn't know how to find the tables you name in your query. This is the case in your code example. - You have an error in your SQL syntax.
- You don't have privilege to access the tables named in your query.
- etc.
type
is a reserved word in SQL. You'll need to enclose it in backticks in your query to use it as a fieldname:
$query = "select * from dr_wiwe_old_node WHERE `type` = 'story'";
One of the reason for the
mysql_fetch_row(): supplied argument is not a valid MySQL result resource
is due to:
Wrong host name selected in defining the db or the permission setup for accessing the database is not correct.
For example if you have granted 'admin@localhost'
to access a db
and you input the host name explicitly cause issues.
To resolve grant permission something like username@'%'
.
The problem is that you are recreating a query within your loop of a query. I don't think you can do this without cloning the connection or something.
精彩评论