sindicate / solidbase

SolidBase is a database change management and version control tool that uses annotated SQL
https://code.google.com/p/solidbase/
Apache License 2.0
2 stars 0 forks source link

Executing multiple SQL files with one execution of SolidBase #100

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The output of SolidBase is as if it is one SQL file.
Reset() is called before each SQL file?

Original issue reported on code.google.com by rene.de....@gmail.com on 4 Oct 2010 at 11:29

GoogleCodeExporter commented 9 years ago
Multiple nested 'sqlfile' elements are now possible using the ant task:

<solidbase-sql driver="org.hsqldb.jdbcDriver" url="jdbc:hsqldb:mem:testTask2" 
username="sa" password="">
    <secondary name="queues" url="jdbc:hsqldb:mem:queues" username="sa" password="geheim" />
    <secondary name="user" username="sa" password="" />
    <sqlfile src="testsql1.sql" />
    <sqlfile src="testsql2.sql" />
</solidbase-sql>

Original comment by rene.de....@gmail.com on 7 Oct 2010 at 8:34