The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Suppress Database Error
vB results an error, when I try to delete a non existing row. DELETE FROM same_table AS a WHERE EXISTS (SELECT * FROM same_table AS b...) or @ before are not working. Any idea how to supress this error?
|
#2
|
||||
|
||||
Will look at. Thank you so far.
|
#3
|
|||
|
|||
Sorry I read column, not row. What is the goal of your sql-statement.
|
#4
|
||||
|
||||
DELETE FROM database.table WHERE userid =$ LIMIT 1
So instead of updating, I prefer to delete and recreate this entry in this case, because I doesn't know, if this entry already is created. |
#5
|
|||
|
|||
Delete all from table? Or is generation the condition "=$" your problem?
|
#6
|
||||
|
||||
Delete only and single row from table if exists. $ means e.g. 1 or 51 or an other variable userid. In this table I store some data, who needs to be refreshed in intervals - only if they exist.
|
#7
|
|||
|
|||
It is a question of your error handling style.
You can use "Select count(userId) as userCount from table where userId=$", check if >0 and then delete. Or you can use directly "Delete form table where userId=$" But in the same way of my first (deleted) answer - I advice using vBulletin-Api (if your table is in the vB-DB). vB_dB_Query and the following classes (also for delete, insert, update) includes an property error for handling it |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|