Is it possible to convert a money (.mny) file into an access (.mdb) file via the command line? Effectively automating the process of loading a money file and then saving it as an access file?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry for late reply. I am travelling currently. I will be home by Friday and will take a look. The answer is 'yes' (or if currently not implemented, it will be easy to do so).
Best,
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
where
fileName.jar: the sunriise jar file
com.le.sunriise.export.ExportToMdb: is the "main" class
in.mny: is the input .mny file [password]: optional password if .mny has a password
out.mdb: is the output file name
Is it possible to convert a money (.mny) file into an access (.mdb) file via the command line? Effectively automating the process of loading a money file and then saving it as an access file?
Sorry for late reply. I am travelling currently. I will be home by Friday and will take a look. The answer is 'yes' (or if currently not implemented, it will be easy to do so).
Best,
I just had a quick peek at the source tree and something like the following will work
java -cp fileName.jar com.le.sunriise.export.ExportToMdb in.mny [password] out.mdb
where
fileName.jar: the sunriise jar file
com.le.sunriise.export.ExportToMdb: is the "main" class
in.mny: is the input .mny file
[password]: optional password if .mny has a password
out.mdb: is the output file name
For example:
java -cp sunriise-Build_20130718_3-app.jar com.le.sunriise.export.ExportToMdb ../src/test/data/mny/sunset01.mny out.mdb
Let me know if that works for you.