Henrique
Member²
I'm developing a tool to document all the components from the .DFM files and for that I need to read the Variables (Variables.Data) property of DFM. I tried to use the TVariables.ReadBinaryData routine as a basis to obtain the information of the variables but I couldn't.
Could you help me?
In the example below, using the Variable Editor I defined the variable "schema" as an integer for testing only:
object OracleQuery2: TOracleQuery
SQL.Strings = (
'select *'
'from all_objects'
'where owner = :schema')
Optimize = False
Variables.Data = {
04000000010000000E0000003A0053004300480045004D004100030000000000
000000000000}
Left = 200
Top = 72
end
Could you help me?
In the example below, using the Variable Editor I defined the variable "schema" as an integer for testing only:
object OracleQuery2: TOracleQuery
SQL.Strings = (
'select *'
'from all_objects'
'where owner = :schema')
Optimize = False
Variables.Data = {
04000000010000000E0000003A0053004300480045004D004100030000000000
000000000000}
Left = 200
Top = 72
end
Last edited: