connectivity between jsp & MYSQL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • varsha25
    New Member
    • Feb 2008
    • 2

    connectivity between jsp & MYSQL

    can anybody tell me how to connect jsp with MYSQL?
  • byjufromgamut
    New Member
    • Feb 2008
    • 2

    #2
    Originally posted by varsha25
    can anybody tell me how to connect jsp with MYSQL?
    *************** **************
    step1:download the mysql_connector .jar ,place it in webapps/lib
    step2:try the following code in jsp
    *************** ***********
    try{
    Class.forName(" com.mysql.jdbc. Driver");
    Connection con=DriverManag er.getConnectio n("jdbc:mysql ://<ip_address>/<data_base_name >","<username>" ,"<password> ");
    java.sql.Statem ent stmt=con.create Statement();
    ResultSet rs=stmt.execute Query("select * from <table_name>" );
    while(rs.next() )
    {}

    Comment

    Working...