Search found 2 matches

by umpf
06.04.2010, 19:56
Forum: SQLite Administrator
Topic: Boolean, True != True
Replies: 2
Views: 1701

Thanks, it works with 'Y' and "N". Obviously, these values are used in SQLite Administrator. Y & N, solve the problem only partly. I have made a test. --- Step 1. Creating a database with SQLite Admin --- CREATE TABLE [TAB] ( [IDX] INTEGER DEFAULT '1' NOT NULL PRIMARY KEY, [B1] BOOLEAN...
by umpf
01.04.2010, 21:04
Forum: SQLite Administrator
Topic: Boolean, True != True
Replies: 2
Views: 1701

Boolean, True != True

Hello, I have a problem with SQLite-Admin 0.8.3.2 . I create a table in SQL Query - Tab that looks like this: CREATE TABLE [Event] ( [IDX] INTEGER DEFAULT '1' PRIMARY KEY NOT NULL, [B1] BOOLEAN DEFAULT 'False' NULL, [B2] BOOLEAN DEFAULT 'False' NULL, [B3] BOOLEAN DEFAULT 'True' NULL ); Then I add so...