Subject RE: [IBO] IB_SQL
Author Jason Wharton
> Is it possible in IB_SQL to have a much larger limit (unlimited) of
> available lines in script screen.
> Have to keep on cut and paste script lines to rebuild a copy
> of a database.

I don't know how big your script is, but there are limitations to the buffer
space of visual controls. If your script is that huge you should go ahead
and write a simple app that does something of this sort:

MyIB_Script.SQL.LoadFromFile( 'MyFile.SQL' );
MyIB_Script.Execute;

Jason Wharton