Welcome to the IBM Collaboration Solutions Community IQJam
UsernamePassword
Reset Password | Register
   
Home | Tags | Help
By Tag: Domino Development / java
1answer
0votes

Does 'No suitable driver' error thrown during attempt to connect to AS400 mean that I'm using the wrong class?

Sample code below var driverClass:java.lang.Class;    2: var driver:java.sql.Driver;    3: var connection:java.sql.Connection;    4: var statement:java.sql.Statement;    5: var rs:java.sql.ResultSet;    6: var clist = new String    7: var sql = "Select CMNAME from eduds01dbo.oecmr where CMNAME like 'AS%'"    8:    9: driverClass = java.lang.Thread.currentThread().getContextClassLoader().loadClass("com.ibm.as400.access.AS400JDBCDriver");   10: driver = driverClass.newInstance();   11: java.sql.D
Domino Development / XPages
Tagged
Bob Stephan - over 2 years ago
Show Correct Answer...
2answers
0votes

Property file content using Java

Hello,   Is there a way to get the content of a property file using Java? The property file is created/imported as a file resource to the database.
Domino Development / Java
Tagged
Jozsef Lehocz - over 3 years ago