Jump to content

[SOLVED] mysql DELETE


bigdspbandj

Recommended Posts

Running in to this error when trying to do a delete query:

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1

 

The query is executed, but the error prevents the code from being read any further. The id is set as an int.

 

		$delExceptionConn = dbConnect();
	$exceptionPgs = $_POST['exceptionPages'];
	$check = false;
	$i = 0;
	while ($i <= count($exceptionPgs)) {
		$exceptionID = $exceptionPgs[$i];
		$delExceptionSql = "DELETE FROM ct_print_setup WHERE id = $exceptionID";
		mysql_query($delExceptionSql) or die(mysql_error());
		++$i;
		$check = true;
	}
	if (!$check) {
		echo 'Delete was unsuccesful';
	}	else {
			header('location: '.$config_basedir.'work-order.php?id='.$job_id.'&exceptionDeleted=1');
		}

Link to comment
Share on other sites

i'm not sure - my first instinct is to wrap your $exceptionID in curly braces:

 

$delExceptionSql = "DELETE FROM ct_print_setup WHERE id = {$exceptionID}";
//or
$delExceptionSql = "DELETE FROM ct_print_setup WHERE id = " . $exceptionID . ";

 

This shouldn't be the problem, however.

Link to comment
Share on other sites

your half way there to figuring out your problem

when you run a query for debugging do it like this for example

<?php
$q = "Delete from `this` where this=that";
$r = mysql_query($r) or die(mysql_error()."<br /><br /.".$q);
?>

use that or die method and then you can clear see the outputted query and hopefully see you have an issue in it. 

 

Also just a note you can run all your delete without that loop

just say

 

<?php
foreach($_POST['exceptionPages'] as $value);
$delete_id[] = "id = '".$value."'";
}
$delete_ids = implode(" || ",$delete_id);
$q = "Delete from `ct_print_setup` where ".$delete_ids;
$r = mysql_query($q) or die(mysql_error()."<Br /><br />".$q);
?>

runs 1 qurey vs a million queries.

 

Also your checking idea isn't very good because it only is valid on the last item

if something midway is "false" well actualy you don't have an if(mysql_upodated_row($r) >0) part so its always true

Link to comment
Share on other sites

kinda, for a very basic select it does, the idea is to minimize your query count and maximize your usefulness on them.  That means don't user * to select stuff  and don't do stuff like you did, 1 query is sufficient the query's length is pretty much negligible, but having 50 queries vs having a single query selecting 50 rows  50 queries is longer

 

Show me a select you are looking to do.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.