Steps for Java to connect to an Oracle database

Source: Internet
Author: User

Importjava.sql.Connection;ImportJava.sql.DriverManager;Importjava.sql.SQLException;ImportOrg.apache.log4j.Logger; Public classTest1 {Private StaticLogger Logger=logger.getlogger (Test1.class. GetName ());  Public Static voidmain (String [] args) {Connection conn=NULL; //Load Driver        Try{class.forname ("Oracle.jdbc.OracleDriver"); } Catch(ClassNotFoundException e) {logger.error (e); }        //Establish a connection        Try{conn= Drivermanager.getconnection ("Jdbc:oracle:thin: @localhost: 1521:orcl", "java78", "java78"); System.out.println ("Establishing the connection is successful!" "); } Catch(SQLException e) {logger.error (e); }finally{            //Close Connection            if(conn!=NULL){                Try{conn.close (); } Catch(SQLException e) {logger.error (e); } System.out.println ("Close connection succeeded!" "); }        }    }}

Steps for Java to connect to an Oracle database

Related Article

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.