sql >> Base de Datos >  >> RDS >> Mysql

sql-maven-plugin con múltiples delimitadores

Puede establecer su tipo de delimitador en "fila" en el bloque de configuración.

<configuration>
...
   <delimiterType>row</delimiterType>
...
</configuration>

tipo de delimitador

Vea más en http://mojo.codehaus.org/ sql-maven-plugin/execute-mojo.html#delimiterType

Por ejemplo:create-proc.sql

CREATE PROCEDURE ADD_BOOK (IN title VARCHAR(100))
BEGIN
   -- your sql code 
   INSERT INTO Book (title) VALUES (title);
END
; -- this means the end of the sql command