views:

47

answers:

2

This not a go/no go question. I've used all kinds of 4GLs (PL/SQL, T-SQL, PGSQL etc.) for database back-end coding and find very useful to establish data layer "closest" to database engine.

Now MySQL stored procedures got my attention and very interested in coding in this brand new 4GL platform.

I would like to start using it in one of my proof of concept projects. What you folks think about MySQL stored procedures? Crucial question is; Is it reliable? How "Oracle Corporation" supports MySQL stored procedures (i.e. documentation, forums etc.)?

Thanks

+1  A: 

Support started in v5.0, it's currently in v5.1 (v5.5 is in the pipe). If they weren't reliable, they'd have been removed.

I don't know what you mean by "how Oracle supports it" - the syntax is different, rarely (if ever) will you be able to port an Oracle stored procedure directly to MySQL without alteration.

OMG Ponies
+1  A: 

A mySQL stored procedure will be as reliable as you make it. If you write it to do everything you need then it will be fine. If you don't it wont.

As @OMG states they began supporting in version 5.0.

What do you mean when you ask how Oracle supports it?

Abe Miessler
PL/SQL and T-SQL have been around for decades and Oracle and Microsoft improve core code-base year in and year-out. I have doubts about MySQL stored procedures in terms of bugs and functionality since sproc concept is fairly new in MySQL community.
Mevdiven
Abe Miessler