I am using JDBC from ExtLib in my xpages application to connect to SQL and have a JDBC connection file in the Webcontent/WEB-INF/JDBC/mssql.jdbc
Looks something like this and works great
<jdbc>
<driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver>
<url>jdbc:sqlserver://server:1433;databaseName=db</url>
<user>sa</user>
<password></password>
</jdbc>
I have a need to make this more dynamic by storing the servername, database, username and password in a notesdocument, is this possible, if so how?
if this is not possible, Is it possible to update the JDBC file programmatically or use other features in ExtLib for making this possible?