Download Presentation On How To Create Connection To A Database

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Tandem Computers wikipedia , lookup

DBase wikipedia , lookup

IMDb wikipedia , lookup

Oracle Database wikipedia , lookup

Entity–attribute–value model wikipedia , lookup

Microsoft Access wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Concurrency control wikipedia , lookup

Functional Database Model wikipedia , lookup

Ingres (database) wikipedia , lookup

Database wikipedia , lookup

Microsoft SQL Server wikipedia , lookup

Microsoft Jet Database Engine wikipedia , lookup

ContactPoint wikipedia , lookup

SQL wikipedia , lookup

Clusterpoint wikipedia , lookup

Database model wikipedia , lookup

Relational model wikipedia , lookup

PL/SQL wikipedia , lookup

Open Database Connectivity wikipedia , lookup

Transcript
Presentation On How To
Create Connection To A
Database
1) Open “Microsoft Access” And select on “Blank
Database”.
2) A Blank Database will appear.
3) Right Click On Table1 : Table.
4) Select the “Design View” Option.
5) A Save As Dialog Box will Open. Enter the desired Name And Click on OK.
6) (This name will be used in SQL Query such as :
String sql = “select * from StudInfo”;
7) Enter the Column names and their Data Types according to the
requirement.
8) Close the StudInfo Table.
9) Click on “Yes” to save the changes to the table.
10) Double Click on the StudInfo : Table
11) Insert the values into the table.
12) Save the database using Ctrl + S.
13) Close the database.
14) Open Control Panel
15) Open Administrative Tools.
16) Double Click on Data Sources (ODBC)
17) From the Window that Appears, click on “Add…”
18) From The “Create New Data Source” Window Click on
“Microsoft Access Driver(*.mdb, *.accdb)”
19) And then click on Finish.
20) Enter the “Data Source Name”.
(This name will be used in getConnection() method like,
Connection con =
DriverManager.getConnection(“jdbc:odbc:StudentDatabase1”);
21) Select the database that you created by selecting on
“Select” option. Click on OK.
After this step, connection to the database will
be created.
A Sample Program to display the contents of database.
1
Continued…
Output Of The Program.
Functions To Execute Queries :
ResultSet executeQuery(String sql) throws SQLException :
To execute queries such as static SELECT
int executeUpdate(String sql) throws SQLException :
To execute Data Manipulation Language (DML)
statement, such as INSERT, UPDATE or DELETE; or an SQL
statement that returns nothing, such as a DDL statement.
boolean execute(String sql) throws SQLException :
To execute SQL statement like create table.