02-25-2014, 10:30 AM
Hi there, I noticed that the DB doesn't have any stored procedures -- and therefore SQL and error handling are done on a case-by-case basis.
Is there any particular rationale behind this? Most importantly, would it be beneficial to replace some of this with calls to stored procedures?
I would be willing to work on that.
I am hoping to implement webERP for a school, we already have a POS in .NET and a connected access DB for course management, which is also being migrated to .NET with a MySQL back-end. There will likely be another web portal for students involved at some point, and I'd like to make sure that we can track payments purely by hooking in to webERP instead of storing all that information separately. Of course, having database manipulations stored as processes both increases security and makes API's a whole heck of a lot easier. (I'm especially worried about consistency of DB operations, specifically as I'll need the POS system to be making journal entries directly into webERP)
Is there any particular rationale behind this? Most importantly, would it be beneficial to replace some of this with calls to stored procedures?
I would be willing to work on that.
I am hoping to implement webERP for a school, we already have a POS in .NET and a connected access DB for course management, which is also being migrated to .NET with a MySQL back-end. There will likely be another web portal for students involved at some point, and I'd like to make sure that we can track payments purely by hooking in to webERP instead of storing all that information separately. Of course, having database manipulations stored as processes both increases security and makes API's a whole heck of a lot easier. (I'm especially worried about consistency of DB operations, specifically as I'll need the POS system to be making journal entries directly into webERP)