Gentlefolk,
Yes, the svn version of zeos now installs correctly into the lazarus ide.
Old version of zeos removed from C:.
Ian.
Search found 21 matches
- 22.04.2012, 22:09
- Forum: ZeosLib 7.0 Beta Forum
- Topic: [patch_done] Lazarus 9.30.4 install problem
- Replies: 8
- Views: 1279
- 22.04.2012, 07:07
- Forum: ZeosLib 7.0 Beta Forum
- Topic: [patch_done] Lazarus 9.30.4 install problem
- Replies: 8
- Views: 1279
Gentlefolk, Uninstalled lazarus, removed any directory or file with 'laz' in its name from the entire C: drive. Installed laz 0.9.30.4, installed the zeos package from 'egonhugeist'. The zeos package install concluded with NO error, new version of laz built and reloaded. Compiled a sample one form p...
- 22.04.2012, 06:48
- Forum: ZeosLib 7.0 Beta Forum
- Topic: [patch_done] Lazarus 9.30.4 install problem
- Replies: 8
- Views: 1279
Gentlefolk, There is a problem somewhere in the environment, the IDE or package processing. I had two copies of ZEOS, one in C:\SW\ZEOS (the download version) and the other in C:\SW\ZEOSSVN (the egonhugeist version). In the package install process I would select C:\SW\ZEOSSVN\.......lpk The zclass f...
- 22.04.2012, 02:27
- Forum: ZeosLib 7.0 Beta Forum
- Topic: [patch_done] Lazarus 9.30.4 install problem
- Replies: 8
- Views: 1279
- 19.04.2012, 14:32
- Forum: ZeosLib 7.0 Beta Forum
- Topic: [patch_done] Lazarus 9.30.4 install problem
- Replies: 8
- Views: 1279
[patch_done] Lazarus 9.30.4 install problem
Gentlefolk, Attempted to add the Zeos package to Lazarus 9.30.4. The add zcomponent.lpk>install crashes in module ZClass at line 84 as follows: Line 84: TContainedObject = class(TAggregatedObject, IInterface) protected function QueryInterface(const IID: TGUID; out Obj): HResult; virtual; stdcall; en...
- 27.08.2011, 00:39
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
Things are looking better.... I have the following code: LocalQuery.UpdateObject.DeleteSQL.Clear; LocalQuery.UpdateObject.DeleteSQL.Add(HeatSQL); LocalQuery.Delete; LocalQuery.Edit; LocalQuery.Post; LocalQuery.ApplyUpdates; The .Delete, .Edit and .Post update the ZQuery Dataset. The .Delete deletes ...
- 26.08.2011, 23:56
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
- 26.08.2011, 23:34
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
- 26.08.2011, 12:07
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
- 25.08.2011, 23:58
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
Gentlefolk, Struggling with this. In the example given in the earlier sections of this discussion I can understand Setting the UpdateSQL := 'Update Table Set......' Setting some fields to Fields[0].Value := Null; And then performing a Post and a Close. The Post-Close code can look at the data in the...
- 24.08.2011, 22:05
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
Thank you for the response. Yes, that is correct, with a bad/corrupt SQL statement no error messages/exceptions occur. Code is as follows (SQL is good): try HeatSQL := 'Delete from VENUE_RESULTS where ' + '((SeasonYear = ' + UnitData.UD.GetCurrent.CurrentSeason + ') and ' + '(ROUND = ' + UnitData.UD...
- 24.08.2011, 00:59
- Forum: 6.6 - stable
- Topic: How to Execute TZUpdate???
- Replies: 14
- Views: 4682
Gentlefolk, Using Lazarus 0.9.30, ZEOS 7.0, FB 2.15, WinXP-SP-2. I am having a problem using the DeleteSQL in a TZQuery-TZUpdateSQL structure. My code follows the code illustrated at the start of this discussion but nothing is deleted from the database. Using the SQL monitor I can see a StartTransac...
- 20.08.2011, 01:28
- Forum: Firebird
- Topic: ZConnection initiated transaction
- Replies: 8
- Views: 2592
Gentlefolk, I have done some work looking at he data loaded/modified on one copy of the program, checked the database, checked what I see in a second copy of the program. Looks good, cannot see changes while a TX is open in the first copy of the program accessible in the second copy of the program. ...
- 15.08.2011, 12:08
- Forum: Firebird
- Topic: ZConnection initiated transaction
- Replies: 8
- Views: 2592
Gentlefolk, Put some log code in Zonnection.StartTransaction/Commit. Executed all parts of the program slowly, while looking at Sinatica transaction display, found some code that did not commit the TX. Fixed that and did some more work with Sinatica, see lots of SQL statements which all look OK. I a...
- 15.08.2011, 08:17
- Forum: Firebird
- Topic: ZConnection initiated transaction
- Replies: 8
- Views: 2592
Gentlefolk, Woops, error in previous post. Item 2 is incorrect, the following code is executed if FTrHandle <> nil then begin if FHardCommit then begin FPlainDriver.isc_commit_transaction(@FStatusVector, @FTrHandle); FTrHandle := nil; end else FPlainDriver.isc_commit_retaining(@FStatusVector, @FTrHa...