sql >> Database >  >> RDS >> Oracle

Hoe voer ik een Oracle-opgeslagen procedure uit in Ruby

Dit zou moeten helpen:

http://rubyforge.org/forum/forum.php?thread_id=11295&forum_id =1078

Voorbeeld is zoals hieronder:

msi heeft de IN-variabele status en left_credit zijn de OUT-variabelen

cursor = conn.parse ('begin ROAMFLEX.GETMSISDNSTATUS(:msi, :status, :remaining_credit); end;')
cursor.bind_param(':msi', '250979923')
cursor.bind_param(':status', nil, String, 20)
cursor.bind_param(':remaining_credit', nil, String, 50)
cursor.exec()
puts cursor[':status']
puts cursor[':remaining_credit_amount']


  1. mysqldbcompare toegang geweigerd maar mysql commando werkt

  2. Laravel - meerdere rijen invoegen en ID's ophalen

  3. C#:SQL Query Builder-klasse

  4. Rollen en rolattributen beheren in PostgreSQL