ZConnection.UseMetadata, what is it for?

The offical for ZeosLib 7.3 Report problems, ask for help, post proposals for the new version of Zeoslib 7.3/v8
Quick Info:
-We made two new drivers: odbc(raw and unicode version) and oledb
-GUID domain/field-defined support for FB
-extended error infos of Firebird
-performance ups are still in queue
In future some more feature will arrive, so stay tuned and don't hassitate to help
Post Reply
hamacker
Junior Boarder
Junior Boarder
Posts: 37
Joined: 13.10.2021, 15:15

ZConnection.UseMetadata, what is it for?

Post by hamacker »

There is a property ZConnection.UseMetadata that can be enabled or disable, what is it for?
Is for my application to consume something?

I´am learning about zeo to create this page to help brazilian comunity:
https://gladiston.net.br/?page_id=757
User avatar
aehimself
Zeos Dev Team
Zeos Dev Team
Posts: 787
Joined: 18.11.2018, 17:37
Location: Hungary

Re: ZConnection.UseMetadata, what is it for?

Post by aehimself »

Hello,

Fresh from the source:

Code: Select all

    /// <summary>Are metadata used? If <c>True</c> then we can determine if
    ///  columns are writeable or not. This is required for generating automatic
    ///  updates.</summary>
    /// <returns><c>True</c> if metainformations are turned on; <c>False</c>
    ///  otherwise.</returns>
Just a small heads-up, you mention Zeos 7.3 in your article but that version never officially existed.
Delphi 12.1, Zeos 8 from latest GIT snapshot
Using:
- MySQL server 8.0.18; libmariadb.dll 3.3.8
- Oracle server 11.2.0, 12.1.0, 19.0.0; oci.dll 21.13
- MSSQL 2012, 2019; sybdb.dll FreeTDS_2435
- SQLite 3.45.2
marsupilami
Platinum Boarder
Platinum Boarder
Posts: 1939
Joined: 17.01.2011, 14:17

Re: ZConnection.UseMetadata, what is it for?

Post by marsupilami »

Hello,

UseMetadata tells Zeos drivers to not fetch metadata from the database. Some drivers need metadata at some point to get enough information for building insert / update / delete statements. So usually it is best to keep this option enabled. Otherwise Zeos could behave unexpectedly like not being able to determine field types correctly or making all data sets read only. Disabling UseMetadata can help in some rare corner cases.

Best regards,

Jan
hamacker
Junior Boarder
Junior Boarder
Posts: 37
Joined: 13.10.2021, 15:15

Re: ZConnection.UseMetadata, what is it for?

Post by hamacker »

I fix my article:
https://gladiston.net.br/?page_id=757

More late, I will translate to english.
Thank you guys.
User avatar
aehimself
Zeos Dev Team
Zeos Dev Team
Posts: 787
Joined: 18.11.2018, 17:37
Location: Hungary

Re: ZConnection.UseMetadata, what is it for?

Post by aehimself »

Thank you for using, advertising and helping others to be able to use Zeos :)
Delphi 12.1, Zeos 8 from latest GIT snapshot
Using:
- MySQL server 8.0.18; libmariadb.dll 3.3.8
- Oracle server 11.2.0, 12.1.0, 19.0.0; oci.dll 21.13
- MSSQL 2012, 2019; sybdb.dll FreeTDS_2435
- SQLite 3.45.2
Post Reply