Dear Sir:
I have a string like following to connect to Oracle Database:
JDBC_URL= jdbc:oracle:thin:@localhost:1521:ABC
here,
I have Variables like:
driverClass="";
Hostname = "";
port = "";
SID="";
etc
I try to extract each part from this JDBC_URL,
then assign them to following variable separately:
driverClass="jdbc:oracle:thin";
Hostname = "localhost";
port = "1521";
SID="ABC";
Can some guru help give some good example and show how to do it??
Thanks and have a nice weekends.