| 88 | } |
| 89 | |
| 90 | static void printUsage(){ |
| 91 | System.out.println("Usage:"); |
| 92 | System.out.println(" java -jar access2csv.jar [ACCESS FILE] [OPTIONS]"); |
| 93 | System.out.println(""); |
| 94 | System.out.println("Options:"); |
| 95 | System.out.println(""); |
| 96 | System.out.println(" * if no options are provided, all tables will be exported to CSV files,"); |
| 97 | System.out.println(" one file per table. Output file paths will be printed to stdout"); |
| 98 | System.out.println(" * '--schema' - prints the database schema"); |
| 99 | System.out.println(" * [TABLENAME] - prints the given table as CSV to stdout"); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * @param args |