Creating a script from a Database Designer model file

The following IBEBlock illustrates how to create a script from a Database Designer Model file:

  execute ibeblock
  as
  begin
    FileName = 'C:\model.grc';
    if [[ibec_FileExists]](FileName) then
      [[ibec_CreateModelScript]](FileName, 'C:\model.sql', __msoDontQuoteIdents + __msoIncludeDescriptions);
  end

<< Export CSV data 2 | IBEBlock | Creating an UPDATE script with domain descriptions >>