PHP + Oracle kullanıyorum ve benim işlemleri işlemek için üzerinde herhangi bir önerileri olup olmadığını merak edildi. Ben bütün ekler / güncellemeler / siler yapmak için saklı yordamları çağırmak, ve şu anda benim saklı prosedürleri sonunda işlemekle duyuyorum.
Ben merak ediyorum:
Is there any difference between calling commit/rollback in my stored procedure vs calling oci_commit / oci_rollback in my PHP code based on the success of the stored procedure call.
Which is preferable? Originally I was thinking in the stored procedures themselves, but now I'm wondering, if there's no difference, perhaps it would give me more flexibility to commit in the calling application code since I could call several stored procedures in a single transaction rather than having to write new stored procedures every time I want to mix/match a variety of SQL statements in a single transaction.
Düşünceler?