Hi Milton,
Unfortunately I think is just how case is handled with h2, which defaults to upper case. When you create the table with a statement like:
CREATE TABLE my_table (my_column ... ) what actually gets created is this:
MY_TABLE(MY_COLUMN)
So the update command should look like:
CALL AddGeometryColumn(NULL, 'MY_TABLE', 'MY_COLUMN', -1,
'geometry', 2);
If you were instead to create the table like:
CREATE TABLE "my_table" ("my_column" ... )
Using quotes to force the names the lower case, then your original call should work.
Hope I understood the issue correctly, let me know if that works for you.
-Justin
--
Justin Deoliveira
Enterprise support for open source geospatial.