Problem: An error occurs when a dependency is introduced.1. First we are going to download an Oracle driver jar package, Ojdbc6.jar (I have Oracle installed here, so in the Oracle installation directory F:\app\zyh\product\11.1.0\db_1\jdbc\lib The directory will have a drive
Label:Java Connection to Oracle database JDBC (Java Data Base Connectivity,java database connection), then how do we use Java to connect the database? importjava.sql.connection;
importjava.sql.drivermanager;
importjava.sql.preparedstatement;
importjava.sql.resultset;
importjava.sql.sqlexception; publicclassjdbc{Publicstaticvoidmain (String[]args) {//1. Importing jar Packages Project name---->buidpath-----
How to connect MySQL, Oracle, SQL Server database JDBC mysql: add a MySQL jar package first String url= "jdbc:mysql://localhost:3306/database name"; //Database address String name= "root";//database user name String password= "123456";// Database user Password Class.forName ("Com.mysql.jdbc.Driver");//load MySQL driver Connection conn = Drivermanager.get
Xuzhou needs to connect to a third-party database. The original database uses a Windows Cluster and is recently changed to the RAC mode, leading to frequent JDBC connection errors. Solution:
1. connection string Configuration:
JDBC: oracle: thin: @ (description = (address_list = (address = (host = IP address 1) (Prot
Because of Oracle's commercial copyright issues, maven cannot download the jar package directly from the central repository, and if you want to use a jar package, you need to handle it manually. The first step: Put Ojdbc14.jar in the user directory, for example: C:\Users\qicyt1812 Step Two: Execute the command in cmd: mvn install:install-file-dgroupid=com.oracle-dartifactid=ojdbc14-dversion=10.2.0.1.0- Dpackaging=jar-dfile=ojdbc14.jar
C:\Users\ qicyt1812 >MVN INSTALL:INSTALL-FIL
Label:Start by first preparing to test if the Oracle database starts normally "is the primary Oracle-related service open"Then create a class that connects to the database with the first thing to remember is what steps are required to connect to the database, and what parameters are required for these steps 1. Load class-driven parameters:the corresponding driver
(1) Loading and registering the JDBC driver for the database
Load JDBC Driver:
Class.forName ("Oracle.jdbc.driver.OracleDriver");
Register JDBC Driver:
Java.sql.DriverManager.registerDriver (New Oracle.jdbc.driver.OracleDriver
") + "~" +rs.getstring ("sal") + "~" +rs.getstring ("comm") + "~" +rs.getstring (" Deptno)); } } //Access single return value store function create or Replace function X (Eno in number) return number//{? = call Public voidfunction ()throwsSQLException {String SQL= "{? = Call X (?)}"; Pager=conn.preparecall (SQL); //the input is the same as before PreparestatementCall.setint (2, 7788); //what type of output is the parameter to register?Call.registeroutparameter (1, Oracletypes.numb
Oracle transaction processing and instance demonstration jdbc operation batch DeletionTransactions
As the basic unit of logical processing, database operations are composed of one or more SQL statements. Of course, there are also non-database operations, such as the Restore Point Set in the computer is a good application.
The basic nature of transactions is described in another article: SQL transactions and
Label:Maven adds dependency issues for Oracle JDBC driversOracle's JDBC Driver jar package cannot be downloaded in the MAVEN project and requires Oracle's official authorization to To find a ojdbc14 10.2.0.1.0 or 10.2.0.2.0 package, let maven re-hit the jar package and place it in the local repository by following the
Because of Oracle commercial copyright issues, MAVEN cannot download jar packages directly through the central repository, and if you want to use jar packs, you need to manually process them.
Step One: Place the Ojdbc14.jar in the user's directory, such as: C:\Users\qicyt1812
Step Two: Execute the command in cmd: mvn install:install-file-dgroupid=com.oracle-dartifactid=ojdbc14-dversion=10.2.0.1.0- Dpackaging=jar-dfile=ojdbc14.jar
C:\USERS
Import java. SQL .*;
Public class ora8iconnect{Public ora8iconnect (string dB, string ID, string PWD){Dbname = dB;Userid = ID;Userpwd = PWD;Beginconnect (); // connect to the database}/*-* Returns a connection object.*/Public connection getconnection () {return conn ;}
/*-* Connect to the database. If the connection succeeds, 1 is returned. Otherwise, 0 is returned.*/Public int beginconnect (){Try{// Load an oracle driverDrivermanager. register
.
"The FROM keyword was not found at the desired location"
923
42000
SELECT ename EMP
"Missing expression"
936
42000
SELECT from EMP
"Table or view does not exist"
942
42000
SELECT ename from Empp
"Cannot insert null value"
1400
23000
An attempt was made to insert a null value into a column that contains a not NULL constraint
"Value is greater than specified precision for this column"
driverSystem.out.println ("Start trying to connect to the database!") "); String URL= "Jdbc:oracle:" + "thin:@127.0.0.1:1521:xe";//127.0.0.1 is a native address, XE is the default database name for Lite OracleString user = "System";//user name, system default account nameString Password = "147";//The password you selected when you installed the settingscon = drivermanager.getconnection (url, user, password);//Get ConnectionsSYSTEM.OUT.PRINTLN ("Conne
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.