Been working on a snippet of java code to export a few tables from an accessdb to CSVs. I want to deploy this code as a Lambda function. I've tried using Jackcess, but the following
try {
String dateOfExtraction = LocalDateTime.now().toString();
Database db = DatabaseBuilder.open(new File("java-runtime/src/access_db_file.accdb"));
System.out.println(db.getTableNames());
ExportUtil.exportFile(db, "table_name", new File("table_name" + dateOfExtraction + ".csv"));
} catch (IOException e) {
e.printStackTrace();
}
throws the error:
java.io.FileNotFoundException: given file does not exist: C:\Users\john.doe.ctr\Desktop\Work\table_name
I am running my code on a mac, this filepath is from the user that provided me with the DB. Is that some kind of permissions error? Should I just use UCanAccess instead? I can't use any of the UCanAccess command line tools, I have to run this in a lambda. The System.out.println(db.getTableNames());
line works exactly as expected, and prints a list of all of the tablenames in the accessdb.
There can be several problems in the code.
The first, you are using
LocalDateTime.now().toString()
as part of the filename of the CSV file in which the information will be saved. It will give you something like:In some operating systems - you mentioned MacOS but it should allow you to create a file with that name - this name can be a possible cause of problems; please consider use something less error prone like
System.currentTimeMillis
:Having said that, please, be aware that in the AWS Lambda function you probably will need to store your results in external storage, typically S3: you have the ability to write to the filesystem but it is usually of relevance when working with temporary files, not with persistent storage. Please, consider for instance the following code snippet.
From a totally different perspective, the problem can be caused because
table_name
is a linked table. When you create a linked table, you need to define the path to the linked information: in your case, probably this information is stored inC:\Users\john.doe.ctr\Desktop\Work\table_name
in the original computer of your client.If you have the MS Access program, you can verify if that is the actual problem with the help of Linked Table Manager.
If you do not have the MS Access program, you can use the
Database
class as well. Please, consider the following example:If the table is linked you need two things: on one hand, the linked information itself and, on the other, you need to provide a convenient implementation of the
LinkResolver
interface, probably by extendingCustomLinkResolver
. This interface basically provides you the ability to map the location of a linked table to a different path. Please, consider review this test for a convenient example of such as implementation.For instance, think in something like this:
Then, use it in your code:
I hope you get the idea, please, adapt the paths and, in general, the code as appropriate.