Search found 7 matches

by starofrainnight
25.06.2007, 13:47
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: SQLProcessor: Exception happened when creating a trigger
Replies: 4
Views: 1783

Thanks for your explain, thanks for your work! Mark!

ZeosLib is a great works! Hope it goes better and better .... :twisted:
by starofrainnight
25.06.2007, 11:17
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: SQLProcessor: Exception happened when creating a trigger
Replies: 4
Views: 1783

thanks Mdaems!!!

This problem encumber me for a week, getting headaches :cry: ...

could it more wise in the future ? or there have some difficulties in technology ?
by starofrainnight
24.06.2007, 15:34
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: SQLProcessor: Exception happened when creating a trigger
Replies: 4
Views: 1783

SQLProcessor: Exception happened when creating a trigger

the SQLProcessor.Script set to : (the sql scripts create by sqlite administrator) CREATE TABLE [tblFirst] ( [F_ID] INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, ); CREATE TABLE [tblSecond] ( [S_ID] INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, [F_ID] BIGINT NULL ); CREATE TRIGGER [on_after_delete_from_t...
by starofrainnight
24.06.2007, 15:20
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Delphi 2007 installation problem (TestRev261)
Replies: 8
Views: 3447

Are you sure you have set the correct Library Path? when I look over the picture again, I remember that I had the some problem like that when install ZeosLib the first time. then, i add these path to Tools->Options->Delphi Options->Library-Win32 -> Library Path. and the Errors disappear for ever : D...
by starofrainnight
24.06.2007, 14:48
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Delphi 2007 installation problem (TestRev261)
Replies: 8
Views: 3447

I don't know why this happen, but i successful installed ZeosLib using these steps in Delphi2007: 0. First before, plz sure you set the correct Library Path to the ZeosLib 1. open Delphi2007, and Open (your ZeosLib path)\packages\ZeosDbo.groupproj 2. you will see there have ZCore110.bpl, ZPlain110.b...
by starofrainnight
20.06.2007, 08:00
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: SQLite : how to read / write the int64 field?
Replies: 1
Views: 1119

Yeah! I know how to do that when i traveled around the ZeosLib's sources! I found that ZeosLib treat SQLite as a common Database and recognize all standard SQL field types! we know, SQLite only recognize four types of fields : INTEGER(could be 64Bits), FLOAT(8-byte IEEE floating point number), TEXT(...
by starofrainnight
11.06.2007, 12:54
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: SQLite : how to read / write the int64 field?
Replies: 1
Views: 1119

SQLite : how to read / write the int64 field?

Hi, everybody! I create a SQLite database like this: CREATE TABLE [test] ( [ID] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, [MyValue] INTEGER NULL, [MyString] TEXT NULL ) then, i put a TZTable (named to "tblSQLite") on a new TForm, set it to the correct database. drop a TButton on the TFor...