A new topic, 'Loops over sql files', has been made on a board you are watching.

You can see it at
http://liquibase.org/forum/index.php?topic=107.new#new

The text of the topic is shown below:

Hi,
Is it possible to use ant's sequantial along with liquibase's update? 
I am keeping sql file's names in file, e.g 
Code:
filenames=first,second,third

and would like to iterate through this file and execute sql files with given 
name
Code:

<for list="${filenames}" param="fn" delimiter="," trim="true">
       <sequential>
               <changeSet id="@{fn}" author="author">
                       <sqlFile path="@{fn}.sql" stripComments="false" 
splitStatements="true" endDelimiter=";"/>
        </sequential>
</for>

But above does not want to work. Is there any other way to do this?
B. regard
Marcin

Unsubscribe to new topics from this board by clicking here: 
http://liquibase.org/forum/index.php?action=notifyboard;board=1.0

Regards,
The LiquiBase Community Forum Team.
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Liquibase-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/liquibase-user

Reply via email to