skip to main content
Using the JDBC Client : Required Permissions for the Java 2 Platform : Permissions for Bulk Load from a CSV File
 

Permissions for Bulk Load from a CSV File

To bulk load data from a comma-separated value (CSV) file with the drivers, the application and driver code bases must be granted security permissions in the security policy file of the Java 2 Platform as shown in the following examples.
grant codeBase "file:/install_dir/lib/-" {
permission java.util.PropertyPermission "true", "read";
permission java.util.PropertyPermission "file.encoding", "read";
permission java.util.PropertyPermission "user.dir", "read";
permission java.lang.RuntimePermission "readFileDescriptor";
};
See Using DataDirect Bulk Load for more information about using bulk load.