CreateTable.java update method always return 0.
On line 185 count returned by the update call should be used.
OLD:
insert.update();
NEW:
count = insert.update();
(I assume that new local variable count would be initialized to 0 at
the beginning of the method)
OLD:
return 0;
NEW:
return count;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---