Subject Problem with DDL extract
Author Robert Martin
Hi

Just tested the following code which comes up with a ISC error message
'arithmatic exception, numeric overflow, or string truncation' on the
'DDL.ExecuteStrings(DDL_List, DDL_Errors);'.

DDL_List := TStringList.Create;
DDL_Errors := TStringList.Create;
try
DDL := TIB_DDL_Extract.Create(IBODatabase);
try
//Get ddl for database
DDL.IB_Connection := IBODatabase;
DDL.ExecuteStrings(DDL_List, DDL_Errors);


Temp := UpperCase(DDL_List.Text);
.....


When testing the 'Metadata extract' tool in the ibutilities tool bar on
the same database I get an ISC error with the following message 'Column
unknown M.RDB$RELATION_TYPE at line 18, column 3'. This could be due to
my database version 2.0.xx.


Thanks
Rob