What is the reason why we need a jdbcrowset like the wrapper around resultset?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More JDBC Interview Questions

How to rollback a JDBC transaction?

0 Answers  


Which constraint cannot be specified as an explicit constraint and should be specified with the column only ?

0 Answers  


How to connect html page to database using jdbc?

0 Answers  


Explain the difference between rowset vs. Resultset in jdbc?

0 Answers  


What are the advantages of using jdbc datasource?

0 Answers  






What is jsp and jdbc?

0 Answers  


What is the query used to display all tables names in SQL Server (Query analyzer)?

0 Answers  


What is a PreparedStatement?

3 Answers   Infosys,


What are different types of JDBC Drivers?

0 Answers  


Which is better odbc or jdbc?

0 Answers  


dear 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 Answers  


Hi 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 Answers   Huawei,


Categories