it seems that Egonhugeist has fixed the metadata bug already in the SVN. So you don't need to create a bug report. Thank you for your efforts Best regards,
Hello Gunnar, MySQL 5.7 should be supported. I see several issues here: ⋅ trying to use doCalcDefaults in the hopes that it solves your problem ⋅ an error when it comes to caching metadata - at least with MySQL ⋅ a feature request to extend the recognition of current_ti...
Hello Gunnar, I had a phone call with Egonhugeist. For Zeos 7.2 you should not use the prepared statement. He will try to fix the problems in Zeos 7.3, so it will become available there. Please try the following: ⋅ use the emulated prepared statement again ⋅ In TZQuery -> Options...
Hello Gunnar, Egonhugeist told me that prepared statements in MySQL have some serious limitations, which is why we don't use them by default. So I suggest, you use the emulated prepared statement. Regarding the handling of null values: There might be an issue that the statement has no chance to dete...
Hello Tom, I managed to fix "package cannot be installed because it is not a design time package" package install problem problem for ZCore250.bpl by changing Usage Options from "Runtime only" to "Designtime and runtime". This package really is only meant to be built bu...
Hello Bill, why don't you just do the changes in ZQuery1? ZQuery1.Edit; ZQuery1.FieldByName('foo').AsString := myStringValue; ZQuery1.FieldByName('bar').AsInteger := MyIntegerValue; ZQuery1.Post; This way ZQuer1 always will know the current state of the record? Best regards, Jan
Hmmm - did you register with anoter userame laready? The anwer is to use a TZUpdateSQL object. There you can specify your own SQL for updates, deletes and what not. There is a chapter about this in the Zeos Documentation collection
Hello all, Egonhugeist originally intended to delete this forum after the beta phase of Zeos 7.2 if I understood him correctly. I am hesitant to do that because this Forum has a lot of knowledge in it. I suggest to rename it to be the Zeos 7.2 stable forum and only lock the beta test thread so no ne...
The Zeos Team is proud to announce the availability of Zeos 7.2.4 as a stable release. This is the newest stable version of Zeos. It deprecates Zeos 7.1, which will not be supported anymore. Zeos 7.2 has seen tons of bugfixes and improvements. We urge all people still using older versions of Zeos to...
Hello fefted, It seems like your table lacks a primary key. With Zeos you have two options at this time: ⋅ Add a primary key to your table. Zeos will use it automatically. ⋅ Use a TZUpdateSQL object. There you can specify your own SQL for updates, deletes and what not. There is a...
Hello Esteban, well there are several thigs here. Short version: ⋅ Zeos will now automatically connect to the database as soon as IZConnection.GetMetadata is called. This should resolve your immediate problem. ⋅ mORMot should use IZconnection.GetMetadata.AddEscapeCharToWildcard...