使用my exclipse对数据库进行操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用my exclipse对数据库进行操作相关的知识,希望对你有一定的参考价值。

二、增加

public static void main(String[] args) {
  //TODO Auto-generated method stub

//4.用户输入需要添加的项目
     Scanner sc = new Scanner(System.in);
     System.out.println("请输入你要添加的数据:");
     System.out.println("2.姓名");
     String two = sc.nextLine();
     System.out.println("3.性别");
     String three = sc.nextLine();
     System.out.println("4.年龄");
     int fore= Integer.parseInt(sc.nextLine());
     System.out.println("5.学校编码");
     int five= Integer.parseInt(sc.nextLine());

try {     

//1.导入数据库并且链接

Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");     

Connection conn = DriverManager.getConnection("jdbc:sqlserver://192.168.8.60;DataBaseName=School","sa","123456");  

//3.写SQL语句  

 String sql= "insert into [Student] values(?,?,?,?)";  

//2.取出数据库内容并以SQL形式展现  

 PreparedStatement stmt= conn.prepareStatement(sql);

       stmt.setObject(1,two); 

       stmt.setObject(2,three); 

       stmt.setObject(3,fore); 

       stmt.setObject(4,five);

//5.判断是否添加成功

    if(!stmt.execute()){     

   System.out.println("数据添加成功");     

}else{     

 System.out.println("数据添加没成功");    

 }    

//6.关闭数据   

 if(!stmt.isClosed()){      stmt.close();     }     if(!conn.isClosed()){      conn.close();     }

   } catch (ClassNotFoundException e1) {     // TODO Auto-generated catch block     e1.printStackTrace();    }catch (SQLException e) {     // TODO Auto-generated catch block     e.printStackTrace();    }                   }

以上是关于使用my exclipse对数据库进行操作的主要内容,如果未能解决你的问题,请参考以下文章

使用my exclipse对数据库进行操作

Linux 安装exclipse

Exclipse 打开Package Explorer

exclipse-idea项目目录结构

mysql17---增量备份

使用mysqldump进行全量+增量备份方案操作记录