Search found 14 matches
- 07.10.2008, 19:49
- Forum: User Patches
- Topic: Zeos for Delphi 2009?
- Replies: 26
- Views: 4392
gto, GO GO GO :lol: Glad too hear that you are in a hurry, too. No I'm not really in a hurry but Zeos is one of the last collection, I mainly use, which is not really D2009 ready. And to be honest I don't want to switch to any commercial commercial project as I'm programming mainly in my spare time ...
- 07.10.2008, 11:30
- Forum: User Patches
- Topic: Zeos for Delphi 2009?
- Replies: 26
- Views: 4392
Mark unfortunately I cannot access it using this link.mdaems wrote:SVN is located at svn://www.firmos.at/zeos/
I'm using the Tortoise Repository Browser and entered this link into the URL edit but the program always says cannot connect to...
- 05.10.2008, 17:34
- Forum: User Patches
- Topic: Zeos for Delphi 2009?
- Replies: 26
- Views: 4392
- 04.10.2008, 20:46
- Forum: User Patches
- Topic: Zeos for Delphi 2009?
- Replies: 26
- Views: 4392
- 10.09.2008, 14:49
- Forum: User Patches
- Topic: Zeos for Delphi 2009?
- Replies: 26
- Views: 4392
...and there will follow some more issues with char/ansichar pchar/pansichar and others. I will try to compile Zeos 6.6.x in D2009, too, and see if my sample programs will still run, although I guess there is no guarantee that all parts of Zeos are now Unicode enabled. OTH IMO Firebird 2.1, for exam...
- 08.08.2008, 18:01
- Forum: 6.6 - stable
- Topic: Thanks
- Replies: 0
- Views: 539
Thanks
Thanks for this new release! I can't wait to try it!
- 14.07.2008, 16:04
- Forum: Firebird
- Topic: Hierarchical Lookup Combos
- Replies: 0
- Views: 556
Hierarchical Lookup Combos
Hi, I've got a master table: PRODUCTS which contains two fields producttype and productsubtype - A lookup table: PRODUCTTYPE which contains the fields producttype and text - A lookup table: PRODUCTSUBTYPE which contains the fields productsubtype and text I'm using a Zeos query and standard VCL compo...
- 06.12.2007, 11:41
- Forum: Firebird
- Topic: Metadata: mdTables
- Replies: 8
- Views: 2370
Concerning the copy(...,1,255) : you're probably right... I'm mainly programming in PL/SQL and there you get exeptions when putting a big string in a small variable. But you must admit : now it will always be clear that truncation occurs. (It's already in SVN, I will not remove it unless there are ...
- 05.12.2007, 21:36
- Forum: Firebird
- Topic: Metadata: mdTables
- Replies: 8
- Views: 2370
Concerning your patch above : that one will be applied as wel... What about adding Copy(...,1,255) ? (No LeftStr, because it's not available in D5) Thanks for your answer and patch! when mentioning the string limitation of 255 characters I just meant that the Firebird database seems to be capable o...
- 05.12.2007, 14:08
- Forum: Firebird
- Topic: Metadata: mdTables
- Replies: 8
- Views: 2370
Hmm, something strange happens. I added those changes mentioned above. Now when manually creating a TZSQLMetadata object it does not return anything from the REMARKS field. function TDBDescription.DBFetchTableMetaData(TableName : string) : string; // Fetch the tables metadata from the database; retu...
- 05.12.2007, 13:08
- Forum: Firebird
- Topic: Metadata: mdTables
- Replies: 8
- Views: 2370
Thanks mdaems, I appreciate your help very much and I already found those lines but needed confirmation about possible changes. Anyway it seems to be unit ZDbcInterbase6Metadata.pas and changed three lines commented in the code below. I cannot speak for Interbase databases though, for this reason so...
- 05.12.2007, 11:02
- Forum: Firebird
- Topic: Metadata: mdTables
- Replies: 8
- Views: 2370
Metadata: mdTables
Hi, I'm currently trying to fetch the tables metadata of a Firebird 2.x database. Especially I'm interested in the description of each table I've added before. When using a tool like FlameRobin or SQl Manager 2005 Lite to look at the description of each table I can see the correct text. However when...
- 27.10.2007, 20:20
- Forum: Firebird
- Topic: File Lock Problems
- Replies: 3
- Views: 1643
Thanks Mark for your reply. I guess the Mantis report describes a similar problem. But the source of this issue is a DLL holding a lock to the database file. I try to describe what I've found out and how I solved this problem: If using TIBDatabase prior to TZConnection/TZQuery, the IB component load...
- 25.10.2007, 12:25
- Forum: Firebird
- Topic: File Lock Problems
- Replies: 3
- Views: 1643
File Lock Problems
Hi, I've coded these lines below to initialize a Firebird 2.x (embedded) database for testing purposes. The code does not make much sense but I it was my intention to show you what happens in other procedures of my application before without copying that code, too. First I create a Firebird database...