Menu

Command Line

Help
TimCullen
2013-07-14
2013-07-18
  • TimCullen

    TimCullen - 2013-07-14

    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?

     
  • hleofxquotes

    hleofxquotes - 2013-07-17

    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,

     
  • hleofxquotes

    hleofxquotes - 2013-07-18

    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.

     

Log in to post a comment.