Loops over sql files

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

    filenames=first,second,third
and would like to iterate through this file and execute sql files with given name
                                                     
But above does not want to work. Is there any other way to do this? B. regard Marcin

There is an includeAll tag that lets you run all files in a folder (http://www.liquibase.org/manual/includeall).  Otherwise, there is no way to use ant’s sequential tags or any other looping tags within a changelog file.

You would be able to create a custom change that could loop through folders and read statements to execute.

Nathan