What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question is when that precompiled statement will be execute or comiple?................
TCS,
6 12370After 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
2 5631Hi to all.. well i want to make a standalone application which can use the concept of connection pooling, constraint is that i have not to use any application server like weblogic etc. Please help me out. Thaks in advance.
3 6883which scenarios we go for jdbc,and which scenario we go for connection polling and wat r advantages and disadvantages using connection pooling.
TCS,
2 6530dear friends I have made connection with SQLSERVER where the following code is compiling properly but giving error at the runtime . I think error in this line where i am sending the value through string Connection connection = DriverManager.getConnection ( "jdbc:microsoft:sqlserver://localhost:1433","sa",""); import java.sql.*; //import mssqlserver.*; public class TestSQLCON { public TestSQLCON() throws Exception { // Get connection DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver()); System.out.println(); System.out.println("Successfully connected one"); System.out.println(); Connection connection = DriverManager.getConnection ( "jdbc:microsoft:sqlserver://localhost:1433","sa",""); if (connection != null) { System.out.println(); System.out.println("Successfully connected"); System.out.println(); // Meta data DatabaseMetaData meta = connection.getMetaData(); System.out.println("\nDriver Information"); System.out.println("Driver Name: " + meta.getDriverName()); System.out.println("Driver Version: " + meta.getDriverVersion()); System.out.println("\nDatabase Information "); System.out.println("Database Name: " + meta.getDatabaseProductName()); System.out.println("Database Version: "+ meta.getDatabaseProductVersion()); } } public static void main (String args[]) throws Exception { TestSQLCON test = new TestSQLCON(); } } so please help me
2 5357i have 1000 records in resultset, how to get first 100 records from resultset, because resultset fetch all 1000 records at a time?
HSBC,
8 21343
Does jdbc use ssl?
Give an example of code used for setting up connection with a driver.
What is the significance of DataBaseMetaData.tableIndexStatistics? How to obtain and use it?
How can we store the file in the oracle database?
Explain the process of creating tables using NetBeans IDE?
What are the different classes through which JDBC represents statements?
What is metadata in programming?
How many jdbc driver types are there?
What are the different types of locking in JDBC?
How to move the cursor in scrollable resultset ?
How can I get or redirect the log used by DriverManager and JDBC drivers?
What is a jdbctemplate?
What are the new features added to JDBC 4.0?
Is jdbc a web technology?
How do I check in my code whether a maximum limit of database connections have been reached?