zedalaye / fbclone

A wonderful tool to take care of your Firebird databases
33 stars 19 forks source link

Triggers & Procedures Domain replacements #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In Triggers & Procedures domain names are replaced by field type

CREATE PROCEDURE CHK_ARTLOCNEG (
    INVTYPE D_IDTYPE)
returns (
    TART_COD D_CODART,
    TLOC_COD D_CODLOC,
    TSTO_QTE D_NBRUNITS,
    TSTO_PDS D_PDS)
as
begin
...

replaced by

CREATE PROCEDURE CHK_ARTLOCNEG (
    INVTYPE integer)
returns (
    TART_COD varchar(50),
    TLOC_COD varchar(50),
    TSTO_QTE numeric(10,3),
    TSTO_PDS numeric(10,3))
as
begin

Firebird 2.1 windows XP/7

Original issue reported on code.google.com by don.jose...@gmail.com on 21 Apr 2010 at 1:33

GoogleCodeExporter commented 9 years ago
This is a bug in UIB/UIBMetadata.pas

Original comment by pierr...@gmail.com on 9 Nov 2012 at 12:20

GoogleCodeExporter commented 9 years ago
I think this is now fixed. (Please compile using latest UIB Trunk or wait for 
2.2.1 binaries)

Original comment by pierr...@gmail.com on 9 Nov 2012 at 3:04