Re: Calling a procedure with parameters

2004-02-16 Thread Egor Egorov
"Prasad Budim Ram" <[EMAIL PROTECTED]> wrote: > Hi, > > If this possible in MYSQL (capability of procedure with > parameterized parameters). > > Assume a procedure with parameters a1,a2,a3 > > test(a1,a2,a3) > begin > . > . > end > > > Can I call the procedure test by followin

Calling a procedure with parameters

2004-02-16 Thread Prasad Budim Ram
Hi, If this possible in MYSQL (capability of procedure with parameterized parameters). Assume a procedure with parameters a1,a2,a3 test(a1,a2,a3) begin . . end Can I call the procedure test by following way call test(a2 = 5, a1 = 4, a3 = 7); i.e changing the ord