Connect to MySQl's JavaBean_MySQL

Source: Internet
Author: User
Connect to the JavaBean package MySQl of mysql;

Import java. SQL .*;

Public class MySqlCon
{
Private String DbName = "";
Private String pass = "";
Private String url = "";
Private Connection con = null;
Private Statement stmt = null;
Private ResultSet rs = null;

Public MySqlCon ()
{
}

Public void setDbName (String name)
{
This. DbName = name;
}
Public void setPass (String pass)
{
This. pass = pass;
}

Public void bucket Con ()
{
Try
{
Class. forName ("org. gjt. mm. mysql. Driver"). newInstance ();
Url = "jdbc: mysql: // localhost/" + DbName + "? User = root & password = "+ pass +" & useUnicode = true & characterEncoding = gb2312 ";
Con = DriverManager. getConnection (url );
Stmt = con. createStatement (ResultSet. TYPE_SCROLL_SENSITIVE, ResultSet. CONCUR_UPDATABLE );
}
Catch (Exception e)
{
}
}

Public ResultSet selectLog (String SQL)
{
Try
{
Bucket Con ();
Rs = stmt.exe cuteQuery (SQL );
}
Catch (Exception e)
{
System. out. println (e. toString ());
}
Return rs;
}

Public void updateLog (String SQL)
{
Try
{
Bucket Con ();
Stmt.exe cuteUpdate (SQL );
}
Catch (Exception e)
{
}
}

Public void close ()
{
Try
{
Con. close ();
Stmt. close ();
}
Catch (SQLException e)
{
}
}

}

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.