Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can find syntax "charts" on this on the sqlite website, but no examples and my code is crashing. I have other tables with unique constraints on a single column, but I want to add a constraint to the table on two columns. This is what I have that is causing a SQLiteException with the message "syntax error".

CREATE TABLE name (column defs) UNIQUE (col_name1, col_name2) ON CONFLICT REPLACE

I'm doing this based on the following:

table-constraint

EDIT: To be clear, the documentation on the link I provided says that CONTSTRAINT name should come before my constraint definition.

Something that may lead to the solution though is that whatever follows my parenthesized column definitions is what the debugger complains about.

If I put

...last_column_name last_col_datatype) CONSTRAINT ...

the error is near "CONSTRAINT": syntax error

If I put

...last_column_name last_col_datatype) UNIQUE ...

the error is near "UNIQUE": syntax error

share|improve this question

2 Answers

up vote 77 down vote accepted

Put the UNIQUE declaration within the column definition section:

CREATE TABLE name (column defs, UNIQUE (col_name1, col_name2) ON CONFLICT REPLACE);

Working example:

CREATE TABLE a (i INT, j INT, UNIQUE(i, j) ON CONFLICT REPLACE);
share|improve this answer
awesome...much appreciated – Rich Apr 23 '10 at 20:58
Welcome to 10K. Now lets make it count X-) – astander Apr 23 '10 at 21:08
1  
@astander - Woohoo! Thank you. :) – Ayman Hourieh Apr 23 '10 at 21:14
Wow. I could get your simple example to work perfectly. A more complex example was kicking my butt. It sure is hard to find the excess parenthesis when you have a dozen of them. I finally got it working. Thanks for the concise answer. – Justin Aug 26 '11 at 20:08

Well, your syntax doesn't match the link you included, which specifies:

 CREATE TABLE name (column defs) 
    CONSTRAINT constraint_name    -- This is new
    UNIQUE (col_name1, col_name2) ON CONFLICT REPLACE
share|improve this answer
I initially did that...didn't work. I tried it again just in case...still doesn't work – Rich Apr 23 '10 at 20:48
2  
Ayman has the answer. . . – Larry Lustig Apr 23 '10 at 20:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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