A Java Bean that operates a database ...

Source: Internet
Author: User
Tags getmessage odbc stmt
Data | Database A Java Bean that operates a database, interested friends take a look at it ~ ~





package dbconnect;





import java.sql.*;





public class SqlConnection


{





String sdbdriver = "Sun.jdbc.odbc.JdbcOdbcDriver";


String sConnStr = "Jdbc:odbc:sqlconnect"; SQLConnect data source name;


private Connection conn = null;


private Statement stmt = null;


ResultSet rs = null;





Public SqlConnection ()


{


Try


{


Class.forName (Sdbdriver);


}catch (java.lang.ClassNotFoundException e) {


System.err.println ("SqlConnection ():" + e.getmessage ());


}


}





public ResultSet executequery (String sql)


{


rs = null;


Try


{


conn = Drivermanager.getconnection (SCONNSTR);


stmt = Conn.createstatement ();


rs = stmt.executequery (SQL);


}catch (SQLException ex) {


System.err.println ("aq.executequery:" + ex.getmessage ());


}


return RS;


}





public void executeupdate (String sql)


{


stmt = null;


rs = null;


Try


{


conn = drivermanager.getconnection (SCONNSTR);


stmt = Conn.createstatement ();


stmt.executequery (SQL);


Stmt.close ();


Conn.close ();


}catch (SQLException ex) {


System.err.println ("aq.executequery:" + ex.getmessage ());


}


}





public void closestmt ()


{


Try


{


Stmt.close ();


}catch (SQLException ex) {


System.err.println ("aq.executequery:" + ex.getmessage ());


}


}





public void Closeconn ()


{


Try


{


Conn.close ();


}catch (SQLException ex) {


System.err.println ("aq.executequery:" + ex.getmessage ());


}


}


}














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.