After creating conntinpool in weblogic
how to write the code in programe where i can use that pool
object in the programe connecting to the database
and how to debug programe withou eclipse
Answer Posted / penchala
import java.sql.*;
import java.util.*;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.sql.DataSource;
class WLConnection
{
public static void main(String arg[]){
Context ctx = null;
java.util.Hashtable ht = new Hashtable();
ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
ht.put(Context.PROVIDER_URL, "t3://localhost:7001");
Connection conn = null;
try {
ctx = new InitialContext(ht);
javax.sql.DataSource ds = (javax.sql.DataSource)
ctx.lookup ("jdbc/sample");
conn = ds.getConnection();
}
catch (Exception e) {
// a failure occurred
}
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is thin driver in jdbc?
Which type of JDBC driver is the fastest one?
What is meant by jdbc?
What is the difference between jdbc and odbc?
What is jdbc in java?
What does jdbc stand for?
Explain the difference between inner and outer join ?
What is JDBC Statement?
Can I use JDBC to execute non-standard features that my DBMS provides?
What is a jdbc connection string?
What is the full form of jdbc?
Explain the difference between resultset and rowset in jdbc
What is odbc and jdbc in dbms?
What is database deadlock ?
Name the types of jdbc drivers.