I have been looking at GetColumns for Postgres and I just can't understand the following code
Code: Select all
else if (PgType = 'numeric') or (PgType = 'decimal') then
begin
AttTypMod := GetInt(8) - 4;
Result.UpdateInt(7, (AttTypMod shr 16) and $FFFF);
Result.UpdateInt(9, AttTypMod and $FFFF);
Result.UpdateInt(10, 10);
end
Do you think it is possible to use information_schema.columns to get the columns info?
Where could I send you the file that I have changed so far? I would like you or someone else to just check what I have been doing and point out any problems. I would prefer to send the zip of all the changed files.
Regards
Sandeep