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 am uploading some files into the database. I need to check if the filename and data already exists in the database. I have tried with the following code.But it shows an error that No Database Selected even though I have connected the database.It is working if I am not checking if the record exists .Someone please help me.

$q = "SELECT `Material_Name`,`Material_Data` FROM `training_material` where Material_Name = '$filename' and Material_Data ='$data'";
    $rs = mysql_query($q);
    if (mysql_num_rows($rs) == 0) 
    {
        $result = $mysqli->multi_query("call sp_upload_file('".$id."','" . $filename . "','".$path."','".$data."')");
    }
    else
    {
        echo "Material Already Uploaded";
    }

and here is the Stored procedure sp_upload_file

DELIMITER $$
CREATE PROCEDURE `sp_upload_file`(IN Training_Id INT,IN filename VARCHAR(45), IN path VARCHAR(100),IN materialdata MEDIUMBLOB)
BEGIN
 INSERT INTO `training_material`(`Training_Id`,`Material_Name`,`Material_Path`,`Material_Data`,`Created_Date`,`Modified_Date`) VALUES (Training_Id,filename,path,materialdata,NOW(),NOW());

END$$

DELIMITER ;
share|improve this question
The warning is because of your passing $rs to mysql_num_rows() and not the procedure. – hjpotter92 Jan 28 at 6:50
Your mysql_query is failing. Try running the query directly into mysql and see does it returned any thing. – Ravi Jan 28 at 6:58

closed as too localized by Leigh, alxx, Anders R. Bystrup, shanethehat, cryptic ツ Jan 29 at 9:31

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Use mysql_error() to determine error in query.

mysql_query() returns false if query fails. So you need to check error message from database.

share|improve this answer
$q = "SELECT `Material_Name`,`Material_Data` FROM `training_material` where Material_Name = '$filename' and Material_Data ='$data'";
    $rs = mysql_query($q);

This query is failing, that is why $rs = false. You should check whether it worked.

$rs = mysql_query($q) or die ("query failed");

For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset, mysql_query() returns a resource on success, or FALSE on error.

PHP Manual

share|improve this answer

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