Hi I want to be able to pass the process name when connecting from JSP. Currently my code is setup as follows:
String DB = "jdbc:firebirdsql://123.123.123.123:3050/C:\\grip\\data\\grip.fdb"; java.sql.Connection con = java.sql.DriverManager.getConnection(DB, user, password); Is it possible to add the process name to this and if so how? Thanks Neil
