Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Install Oracle database driver in Karaf

I tried to install the driver with the following command.
install wrap:file:C:/MyTools/driver/ojdbc6.jar\\$Bundle-SymbolicName=oracle.jdbc&Bundle-Version=11.2.0.2&Bundle-Name='JDBC Driver for Oracle'
But, it failed with this error.
Error executing command bundle:install: unable to convert argument urls with value '' to type java.util.List<java.net.URI>
Can anyone help?
Thanks,
email3888
Labels (4)
2 Replies
Anonymous
Not applicable
Author

Hi,
Did you follow up document about: TalendHelpCenter:Installing the driver from the file system using bundleAinstall to install your oracle database driver from the file system?
Best regards
Sabrina
Anonymous
Not applicable
Author

Hi,
You could try the simple command without specify Bundle-Name etc.
install wrap:file:C:/MyTools/driver/ojdbc6.jar
Or you install the ojdbc6.jar into Maven repo, then install it from M2 repo
mvn install:install-file -Dfile="C:/MyTools/driver/ojdbc6.jar" -DgroupId=ojdbc -DartifactId=ojdbc -Dversion=11.2.0.2.0 -Dpackaging=jar
install wrap:mvn 0683p000009MA5A.pngjdbc/ojdbc/11.2.0.2.0
Regards.