You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases it would be immensely useful to call stored procedures which set
output parameters. I don't think it would hurt that much to introduce some
ability to indicate the parameter direction. I've tried implementing something
like this for adodbapi and it seems to work.
# inside adodbapi:
class Inp(str):
direction = adc.adParamInput
class Out(str):
direction = adc.adParamOutput
class InOut(str):
direction = adc.adParamInputOutput
# to be used like this
from adodbapi import Inp, Out
cursor.callproc('GetOrderStatus', {
Inp('IdOrder'): 1327844,
Out('OrderState'): 0,
})
Original issue reported on code.google.com by sad.n...@gmail.com on 4 Feb 2011 at 2:30
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
sad.n...@gmail.com
on 4 Feb 2011 at 2:30The text was updated successfully, but these errors were encountered: