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 ;

$rstomysql_num_rows()and not the procedure. – hjpotter92 Jan 28 at 6:50mysql_queryis failing. Try running the query directly into mysql and see does it returned any thing. – Ravi Jan 28 at 6:58