I am using UNIQUE Constraint in my table for two columns to prevent duplicate rows. If I try to insert a row with the same 2 columns I get

A Database Error Occurred Error Number: 1062

Duplicate entry '62-88' for key 'subscription'

INSERT INTO subscriptions (user_id, subscribed_to, date) VALUES ('62', '88', '2011-07-11 19:15:13')

Filename: C:\wamp\www\mysite\system\database\DB_driver.php

Line Number: 330

How can I return a php error, e..g Already subscribed! instead of displaying the mysql error?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Call mysql_errno() after your mysql_query() and check for 1062.

Note: It's a more common/intuitive solution to query the database first. See answer by Manocho.

link|improve this answer
1  
+1: The fewer trips between the database & the application, the better. – OMG Ponies Jul 10 '11 at 16:47
Thanks for the suggestion! I'm using an MVC pattern. If I understood correctly, I add mysql_errno() after my insert query (in my model) and that should return 1062? Then I would use if ($query == 1062) display error? – CyberJunkie Jul 10 '11 at 17:52
Yes. You could put it in your Model. But I'd argue this is business logic and it may be better served in your Controller. Note, check if mysql_errno() returns 1062, not the query. – Jason McCreary Jul 10 '11 at 18:03
feedback

I think you will need to run a query manually to check if the entry already exists in your database. so something like: SELECT COUNT(*) FROM subscriptions WHERE (user_id = '62' AND subscribed_to = '88'). If the count returned is > 0 then return the error, however you want it displayed.

link|improve this answer
+1 this is a more intuitive solution. – Jason McCreary Jul 10 '11 at 16:28
@Jason 's response is actually more efficient than mine, though both would work. – Manocho Jul 10 '11 at 16:28
The fewer trips between the database & the application, the better. – OMG Ponies Jul 10 '11 at 16:47
feedback

Using the 3rd link, compare the mysql error or mysql errno to the list of errors and if the condition is met, provide your alternate error message.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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