On 2013-10-31 13:07, Tomáš Remeš wrote:
I test HTTP session persistence to db using latest WildFly application server 
(Beta2 - SNAPSHOT, h2 1.3.173). I use this
connection url "jdbc:h2:file;AUTO_SERVER=true;DB_CLOSE_ON_EXIT=FALSE", because 
I want database to survive serve
shutdown. Occassionally I am facing following exception:

        Unique index or primary key violation: "PRIMARY_KEY_A ON
        PUBLIC.""binarybased_default_host_session_db_cluster""(ID)"; SQL 
statement:


It looks like you have declared ID as the primary key of the
   binarybased_default_host_session_db_cluster
table, and you are trying to insert a row that has the same ID as an existing 
row.

This is most likely a bug in the application logic somewhere.

--
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to h2-database+unsubscr...@googlegroups.com.
To post to this group, send email to h2-database@googlegroups.com.
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to