Re: [Liquibase-user] includeAll Problems on Windows

2009-04-28 Thread Robert Fischer
For the record, I had to hack around that for Autobase. See line 78 here: http://snipr.com/gyaci ~~ Robert. Brendan.Dahl.Work wrote: > I'm trying to use the includeAll function on windows and the only way I can > get it to work is to add a back slash to the path e.g. path="\latest" />. If I

Re: [Liquibase-user] includeAll Problems on Windows

2009-04-28 Thread Voxland, Nathan
You shouldn't need the / in the path. I fought with that error quite a bit for the 1.9.2 releases and thought I had it fixed. I'll have to look into it more. Nathan -Original Message- From: Brendan.Dahl.Work [mailto:brendan.d...@totalbenchmarksolution.com] Sent: Tuesday, April 28, 2009

[Liquibase-user] includeAll Problems on Windows

2009-04-28 Thread Brendan.Dahl.Work
I'm trying to use the includeAll function on windows and the only way I can get it to work is to add a back slash to the path e.g. . If I leave out the backslash I get "Migration Failed: URI has an authority component". The problem with using the backslash is it then never shows the changeset as

Re: [Liquibase-user] Changelog parameters

2009-04-28 Thread Voxland, Nathan
You need to replace the parseOptions method in liquibase.commandline.main with the following version (note: I haven't actually tested it because my version is lying in small pieces on the floor of my IDE. It works for me with my mental JVM though... ) protected void parseOptions(String[] args

Re: [Liquibase-user] Changelog parameters

2009-04-28 Thread jfrapper
A patch would be great if you have it ;) Thanks for the help Nathan... Cheers, JF Voxland, Nathan wrote: > > I think I figured out where the bug is. It is in the command line app > class, and how it parses the parameters. How important is it to you to > have it run as a command line app? D

Re: [Liquibase-user] Changelog parameters

2009-04-28 Thread Voxland, Nathan
I think I figured out where the bug is. It is in the command line app class, and how it parses the parameters. How important is it to you to have it run as a command line app? Do you need a custom build (or want the patch so you can build it yourself), or can you hold off until the next release

Re: [Liquibase-user] Changelog parameters

2009-04-28 Thread jfrapper
I get the help message, for example: liquibase --driver=oracle.jdbc.OracleDriver --classpath=C:\oracle\product\10.2.0\db_1\jdbc\lib\ojdbc14.jar --changeLogFile=sql\base.changelog.xml -url="jdbc:oracle:thin:@local:1521:asdf" --username=my_user --password=my_pass Dschemaname=my_schema -Dtablespaced

Re: [Liquibase-user] Changelog parameters

2009-04-28 Thread Voxland, Nathan
What if you move your paremeters to before the update: liquibase --driver=oracle.jdbc.OracleDriver --classpath=C:\oracle\product\10.2.0\db_1\jdbc\lib\ojdbc14.jar --changeLogFile=sql\base.changelog.xml --url="jdbc:oracle:thin:@myjdbc" -username=my_username --password=my_password --logLevel=finest -

Re: [Liquibase-user] Changelog parameters

2009-04-28 Thread jfrapper
Hi Nathan, I tried it with underscores and also just using the two words together, for example schemaname. Neither attempt worked. The liquibase.bat just doesn't like my properties. Is there any other information I can provide? Here is a sample changeset:

Re: [Liquibase-user] Remarks => COMMENT statements?

2009-04-28 Thread Voxland, Nathan
The trouble is that not all databases return really useful comments for tables, so we didn't want to automatically move them along to the new database. For example, the comments for mysql tables are usually something like "InnoDB FREE 53k". It is something that we would like to work around and ge

Re: [Liquibase-user] Jira studio opinions?

2009-04-28 Thread Willie Seabrook
I've used some complex/advanced bug trackers etc, including Jira. But I'm a fan of Trac myself. Super simple - doesn't do everything, but does what it does really well. Trac also has a code review plugin and a reasonable browser. P.S I'm not knocking Jira - it's a fantastic product (all the Atl