Как подключиться к удаленному файлу с помощью драйвера CData Excel JDBC?
Использование CData для подключения к локальному файлу Excel с помощью URL- адреса jdbc ниже:
Connection conn = DriverManager.getConnection("jdbc:excel:Excel File=C:\MyExcelWorkbooks\SampleWorkbook.xlsx;");
Можем ли мы подключиться к удаленному файлу с помощью CData. Если да, то каким может быть соединение jdbc url?
1 ответ
The CData JDBC Driver for Excel is designed to connect to local and network-accessible files. For example, to connect to an Excel file that has been shared on another machine, use a connection string similar to the following:
jdbc:excel:Excel File=\\SHARED_MACHINE\SharedFolder\SharedFile.xlsx
If the Excel file is NOT accessible to the machine on which the driver was installed, (i.e. only accessible from Remote Desktop) then the CData JDBC Driver will not be able to connect to it.