Subject | Re: [firebird-support] ISQL and Loading Script |
---|---|
Author | Ivan Prenosil |
Post date | 2006-04-21T15:27:57Z |
> Hi All:Running
> I want to execute ISQL and have a script loaded upon execution.
> Example:
> RUN ISQL.exe c:\MyScript.txt
> So, ISQL will load and start running the MyScript script without my
> intervention.
> I thought I saw how to do this but can't find that particular reference
> example in the books today.
> The closest example I found ran ISQL with a DataBase specified as the
> parameter.
isql -?
will list command line parameters. This is what you need:
isql -i myscript.sq
Ivan