亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mysql最后補充+Java連接數據庫

發布時間:2020-06-29 19:03:07 來源:網絡 閱讀:311 作者:Undertaker16 欄目:數據庫

Truncate table 表名

直接刪除表中全部數據,與delete不同的是,此方法無法使用where選擇,只能全部刪除。

 

truncate table users;

 

Java連接數據庫:

package com.edu.gkh;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Scanner;

public class Homework {
 static Statement sc=null;
 static Scanner sca=new Scanner(System.in);
 static String username;
 public static void main(String[] args) throws Exception {
  getStatement();
  String name2="";
  String pwd2="";
  for(;;){
  System.out.println("請輸入注冊賬號");
  String name=sca.next();
  System.out.println("請輸入密碼");
  String pwd=sca.next();
  System.out.println("請再次輸入密碼");
  String pwd1=sca.next();
   if(pwd1.equals(pwd)){
    name2=name;
    pwd2=pwd;
    System.out.println("注冊成功");
    break;
   }
   else{
    System.out.println("兩次密碼不一致,請重新輸入;是否重新注冊yes/no");    
   char regist=sca.next().charAt(0);
   if(regist=='y'){
    System.out.println("請重新輸入");
   }
   else if(regist=='n'){
    System.out.println("您已經退出注冊");
   }
   else{
    System.out.println("您的輸入非法");
   }
  }
 }
  
  System.out.println("歡迎來到J18銀行");
  System.out.println("請登錄:");
  System.out.println("用戶名:");
  username=sca.next();
  System.out.println("密碼:");
  String password=sca.next();
  int num=queryAccount(username,password);
  if(num==1){
   System.out.println("登陸成功");
   for(;;){
    System.out.println("請選擇交易類型:");
    System.out.println("1、存錢   2、取錢  3、查詢余額");
    int cz=sca.nextInt();
    if(cz==1){
     cun();
    }else if(cz==2){
     qu();
    }else if(cz==3){
     query();
    }else{
     System.out.println("謝謝使用!");
     break;
    }
   }
  }else{
   System.out.println("登錄失敗");
  }
 }
 
 public static void cun() throws Exception{
  System.out.println("請輸入你的存款金額:");
  double money=sca.nextDouble();
  String sql="update account set money=money+"+money;
  boolean a=sc.execute(sql);
  if(!a){
   System.out.println("存款成功!");
  }
 }
 
 public static void qu() throws Exception{
  System.out.println("請輸入你的取款金額:");
  double money=sca.nextDouble();
  String sql="update account set money=money-"+money;
  System.out.println(sql);
  boolean a=sc.execute(sql);
  if(!a){
   System.out.println("取款成功!");
  }
 }
 
 public static int queryAccount(String username,String password) throws Exception{
  String sql="select * from account where aname='"+username+"'and apwd='"+password+"'";
  ResultSet rs=sc.executeQuery(sql);
  int num=0;
  while(rs.next()){
   num++;
  }
  return num;
 }
 
 public static void query() throws Exception{
 String sql="select money from account where aname='"+username+"'";
 ResultSet rs=sc.executeQuery(sql);
 double money=0;
 while(rs.next()){
  money=rs.getDouble(1);
      }
 System.out.println("你的賬戶余額:"+money);
 }
 
 
  public static void getStatement() throws Exception{
  Class.forName("com.mysql.jdbc.Driver");
  String url="jdbc:mysql://localhost:3306/atm";
  String username="root";
  String password="root";
  Connection c=DriverManager.getConnection(url,username,password);
  sc=c.createStatement();
 }
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

楚雄市| 高邮市| 喀什市| 修水县| 新绛县| 扎囊县| 南宁市| 农安县| 开远市| 沂源县| 福泉市| 大化| 泰州市| 甘孜县| 沙河市| 德庆县| 康保县| 呼图壁县| 库尔勒市| 会同县| 湛江市| 宜宾县| 荔波县| 竹溪县| 洛阳市| 北票市| 华安县| 海林市| 奎屯市| 凯里市| 仙居县| 克什克腾旗| 和硕县| 宣城市| 桐乡市| 金塔县| 钟祥市| 米林县| 安新县| 博兴县| 噶尔县|