0

What is the correct syntax to call a MySQL stored procedure in SQuirreL? Here's an example sproc?

foo(IN VARCHAR s, OUT VARCHAR a, OUT VARCHAR b, OUT VARCHAR c), 
KC Baltz
  • 1,498
  • 1
  • 13
  • 22

1 Answers1

0

The following worked for me in Squirrel 3.5.0:

call foo('parm', @a, @b, @c)
KC Baltz
  • 1,498
  • 1
  • 13
  • 22