摘要:最基礎(chǔ)的東西都不記得了,蛋疼。數(shù)據(jù)庫(kù)連接成功語(yǔ)句執(zhí)行成功語(yǔ)句執(zhí)行成功沒(méi)有找到數(shù)據(jù)庫(kù)驅(qū)動(dòng)連接數(shù)據(jù)庫(kù)服務(wù)器失敗
最基礎(chǔ)的東西都不記得了,蛋疼。
import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class DB { public static void main(String[] args) { String url = "jdbc:mysql://localhost:3306/test"; String user = "root"; String passwd = "123456"; String sql1 = "SELECT * FROM score"; String sql2 = "INSERT INTO score VALUES(25,905,"ENGLISH",84);"; String sql3 = "UPDATE score SET grade=80 WHERE id=25"; try { Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection(url, user, passwd); System.out.println("數(shù)據(jù)庫(kù)連接成功!"); Statement stat = con.createStatement(); ResultSet rs = stat.executeQuery(sql1); while (rs.next()) { int id = rs.getInt("id"); int stu_id = rs.getInt("stu_id"); String course = rs.getString("c_name"); int grade = rs.getInt("grade"); System.out.println(id + " " + stu_id + " " + course + " " + grade); } int i = stat.executeUpdate(sql2); if (i != 0) { System.out.println("INSERT語(yǔ)句執(zhí)行成功!"); } int j = stat.executeUpdate(sql3); if (j != 0) { System.out.println("UPDATE語(yǔ)句執(zhí)行成功!"); } if (rs != null) { rs.close(); rs = null; } if (stat != null) { stat.close(); stat = null; } if (con != null) { con.close(); con = null; } } catch (ClassNotFoundException e) { // TODO Auto-generated catch block System.out.println("沒(méi)有找到數(shù)據(jù)庫(kù)驅(qū)動(dòng)!"); } catch (SQLException e) { // TODO Auto-generated catch block System.out.println("連接數(shù)據(jù)庫(kù)服務(wù)器失敗!"); } } }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/64082.html
摘要:用基于快速實(shí)現(xiàn)一個(gè)最簡(jiǎn)單的代理服務(wù)器,只需要分鐘時(shí)間。監(jiān)控統(tǒng)計(jì)客戶端的請(qǐng)求情況,請(qǐng)求分布統(tǒng)計(jì)請(qǐng)求類型等,以此來(lái)優(yōu)化數(shù)據(jù)庫(kù)的使用。 用java8基于vert.x3 快速實(shí)現(xiàn)一個(gè)最簡(jiǎn)單的mysql代理服務(wù)器,只需要5分鐘時(shí)間。 showImg(/img/bVz0vh); 什么是mysql 代理? mysql代理是介于client端和mysql服務(wù)端中間層服務(wù),如下圖所示: showImg(...
閱讀 3210·2021-11-24 10:30
閱讀 1324·2021-09-30 09:56
閱讀 2396·2021-09-07 10:20
閱讀 2609·2021-08-27 13:10
閱讀 712·2019-08-30 11:11
閱讀 2064·2019-08-29 12:13
閱讀 769·2019-08-26 12:24
閱讀 2911·2019-08-26 12:20