Dear Support Team,
May I please get some advice on how to write the connection string in UNC path?
I have the url which works well with the mapped drives, but that needs to be improvised to using UNC Paths.
URL=jdbc:dbf:/z:/folder1/dbffolder
where z is the mapped drive. I need to change it to the mapped computer. How can I do it? Are there any access rights to be configured for this change?
Thanks & Regards,
Devika
|
Re-sending as may be typo in my email id ..?
Dear Support Team,
May I please get some advice on how to write the connection string in UNC path?
I have the url which works well with the mapped drives, but that needs to be improvised to using UNC Paths.
URL=jdbc:dbf:/z:/folder1/dbffolder
where z is the mapped drive. I need to change it to the mapped computer. How can I do it? Are there any access rights to be configured for this change?
Thanks & Regards,
Devika
|
For instance, you have a Windows PC with a name of yourHostName, you can use
URL=jdbc:dbf:/\\yourHostName\c$\folder1\dbffolder
If you're accessing from another Windows machine, usually you won't mett access security issue.
If you're accessing from Linux/Unix machin, you can consider using SAMBA url.
|