how to use jdbc

Solutions on MaxInterview for how to use jdbc by the best coders in the world

showing results for - "how to use jdbc"
Luigi
25 Jan 2016
1Connection = 
2  Helps our java project connect to database
3Statement = 
4  Helps to write and execute SQL query
5ResultSet = 
6  A DataStructure where the data from query result stored
7+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8    
9
10  After succesfully created the connect
11next step is STATEMENT
12
13Statement statement = connection.createStatement();
14We use createStatement() method to create
15the statement from our connection.
16-The result we get from this type of statement
17can only move from top to bottom,
18not other way around
19
20Statement statement = connection.
21createStatement(ResultSet TYPE_SCROLL_INSENSITIVE
22,ResultSet CONCUR_READ_ONLY);
23
24-The result we get from this type of
25statement can freely move between rows
26
27Once we have statement we can run
28the query and get the result to
29ResultSet format 
30		import java.sql.ResultSet;
31        
32We use the method executeQuery()
33to execute our queries
34
35ResultSet result = statement.
36              executeQuery("Select * from employees");
queries leading to this page
how to do jdbc connection in ajapdatabase connection sql serverjdbc with java swingjdbc connection in javahow to make database interface3 important interface in jdbcjdbc connection in java exampleconnection db sqlsql database connectionjdbc in javawhat is a jdbchow to jdbc connect in javajdbc connection examplehow to include jdbc on javahow to connect jdbc in javawhat is a user interface in a databasesql connection database querydb connectioncreate jdbc connectiondatabase connectionjava jdbc exampleresult set in jdbcrealtime database interfacejdbc example in javajava jdbc connection examplehow to create a database interfacehow to write jdbc jdbc java exampleconnect to jdbc in javaconnection in jdbccreate statement in jdbcdatabase interfacejava jdbc exampleconnection of databasejdbc program in javajdbc connectionusing jdbc in javawhat is jdbc in javadatabase interfacesjava jdbc connectiondatabase interface systemsql database interfacesql connectionjdbc in java example programjdbc example program in javajdbc connection javahow is better to make a jdbc connectionhow to use jdbc in javacreating a jdbc connection in javaconnecting to jdbc in javahow to write jdbc connection in javaconnection with sql databaseworking with jdbccreating a jdbc connection in java in a projectcreate jdbc connection in javacode for jdbc connection in javainterface and database connectionhow to create jdbc connection class in javahow to do jdbc connection in ajpmake a database connection in jdbcusing jdbc javahow to setup jdbc connection in javado i need jdk to make a jdbc connection 3fconnection statement in jdbchow to use jdbc