A new topic, 'Variable passing question', has been made on a board you are 
watching.

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

The text of the topic is shown below:

Hi. i am looking at liquibase to be used for loading/refresh test data into 
oracle database. 

the scenario, i need to delete all the data related to specific user from 
tables before being able to reinsert it again. Deletion is generic for all 
users but it's definitely using different ids. so i will have something like 
the following for each changeset

<changeSet author="me" id="1276866325413-1" context="all,group1,user1">
<setVariable name="id"> 
         <value="0s1d25e2we1s2"/> 
</setVariable> 

<include file="delete.xml"/>
<insert tableName="user">
            <column name="id" value="${id}"/>
            <column name="title" value="testing"/>
</insert>
...
</changeSet>

how can I pass variable to the include file? or is there any other way? 

Thanks a lot for the help.
Andrew

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.
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Liquibase-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/liquibase-user

Reply via email to