You are not logged in.
Pages: 1
I've downloaded the SQLite3 framework over the last day or so, and I run several of the Samples under Delphi 2010: Project02, Project03 server and client, TestSQLite3Pages, and SynTest.
In Project03Server, the line in Unit2:
Server.CreateMissingTables; is missing its parameter.
It should be:
Server.CreateMissingTables(cardinal);
I used (2) and then the server runs, allowing the client to be successfully tested.
In Project01, an Abstract Error occurs at the line:
if Database.Add(Rec,true) = 0 then ....
There are two Add functions in SQLite3commons. The first one appears to be the function used in Project01 but I cannot figure out why the coding creates an Abstract Error which is a Delphi error not the error message programmed in Project01. I cannot get Project01 to run.
Finally, can anyone tell me where I can get the numerous components used in the "MainDemo" included in the Samples? Examples are: AdvToolBar, AdvPreviewMenu and so on. I can't find them anywhere on the Synopse website. Getting the "MainDemo" up and running looks like it will be a good learning process. I have downloaded the exe and can see the finished result.
Pages: 1