[Solved] Table not found in statement
Posted: Mon Jul 24, 2017 7:34 pm
				
				Dear all,
This seems like an easy problem, so I hope it hasn't been answered yet. At least I didn't find an answer.
I want to update my table und fill a newly created column with the default value. I use the following SQL code:
UPDATE TABLE "tblExample" SET "Embedded" = 0
It gives me this error message: "1: Table not found in statement [update table]"
Both table and column exist. I tried giving it "0" instead of 0 as a value, it doesn't help. I also tried reopening the database. The database is embedded, HSQL engine. The column is a foreign key, but I made sure that the desired value respects the integrity. Entering the value manually works. The command type ALTER TABLE works.
What am I doing wrong?
			This seems like an easy problem, so I hope it hasn't been answered yet. At least I didn't find an answer.
I want to update my table und fill a newly created column with the default value. I use the following SQL code:
UPDATE TABLE "tblExample" SET "Embedded" = 0
It gives me this error message: "1: Table not found in statement [update table]"
Both table and column exist. I tried giving it "0" instead of 0 as a value, it doesn't help. I also tried reopening the database. The database is embedded, HSQL engine. The column is a foreign key, but I made sure that the desired value respects the integrity. Entering the value manually works. The command type ALTER TABLE works.
What am I doing wrong?