Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't add a BOOLEAN column to a table in my Derby database

Tags:

java

sql

jdbc

derby

I am using NetBeans and I am struggling with adding a BOOLEAN column to my table for my Derby database.

Unable to execute command: create table "APP".CLASS ( TEST BOOLEAN ) BOOLEAN cannot be used for the version 10.6 or any version before 10.6. You need to upgrade your database to 10.7 or any higher version.

But then when I checked my version, I found out that I have version 10.11.

What might be the reason for that?

like image 347
yemerra Avatar asked Nov 10 '22 22:11

yemerra


1 Answers

The solution to this problem was that I upgraded the database.

like image 133
yemerra Avatar answered Nov 14 '22 22:11

yemerra