views:

165

answers:

2

I want to run a Firebird stored procedure from a batch file or similar on a desktop. The stored procedure contains insert statements and update statements with if possible parameters that I would like to pass.

Any ideas or other suggestions would be appreciated.

+1  A: 

There is a Firebird isql tool, it even has a link in the start menu group. You can use this in your script. For the syntax see for example Stefan Heymann's site.

mghie
+1  A: 

I think you can also try the EXECUTE BLOCK syntax

Hugues Van Landeghem
Cosmin Prund