tacitknowledge / autopatch

An automated database patching framework for Java.
41 stars 19 forks source link

Adds support for parsing stored procedures and functions in MySQL #6

Closed jeffkole closed 13 years ago

jeffkole commented 13 years ago

This change allows for MySQL stored procedures and stored functions to be used in sql scripts. It just recognizes "create procedure" and "create function" statements as the beginning of stored procedure and function statements so that the entire statement is sent over the wire as one full statement, not delimited by semi-colons.

scottfromsf commented 13 years ago

Thanks a bunch, Jeff.