Is the way to call stored procedure without database specification? For example:
<changeSet author="name" id="id1" dbms="mysql"> <sql> EXEC procedure_name('some_string_value') </sql> </changeSet>
<changeSet author="name" id="id2" dbms="oracle"> <sql> EXECUTE procedure_name('some_string_value') </sql> </changeSet>
<changeSet author="name" id="id3" dbms="postgree"> <sql> PERFORM fun_name('some_string_value') </sql> </changeSet>
I need avoid database conditions because I call this procedure in different places. Is there a way to achieve this with implementing db condition in one place?