Rafa de Miguel wrote:
> Is there a way to know which constraint is being violated when you receive 
> the message constraint error 19:
>
> In example: my_column_name UNIQUE constraint

Upgrade SQLite:

sqlite> create table t(x unique);
sqlite> insert into t values(1);
sqlite> insert into t values(1);
Error: column x is not unique

> I'm using WebSQL

Upgrade whatever implementation of WebSQL you're using.


Regards,
Clemens
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to