zoukankan      html  css  js  c++  java
  • mysql数据库__Jdbc直接操作__PreparedStatement__新增数据表

    一、代码如下

    private void cTable() {
    		// TODO Auto-generated method stub
    		java.sql.PreparedStatement ps = null;
    		java.sql.Connection cn = null;
    		ResultSet rs = null;
    
    		try {
    			// Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    			Class.forName("com.mysql.jdbc.Driver").newInstance();
    			cn = DriverManager.getConnection(
    					"jdbc:mysql://localhost:3306/learn?user=root&password=&useUnicode=true&characterEncoding=UTF8");
    			ps = cn.prepareStatement("create table xxxx(aa int)");
    
    			
    			int i= ps.executeUpdate();
    			System.out.println(i);
    			if(i>=1) {
    				System.out.println("数据表新增:成功");
    			}else {
    				System.out.println("数据表新增:失败");				
    			}
    
    		} catch (Exception e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		} finally {
    			try {
    				ps.close();
    				cn.close();
    			} catch (SQLException e) {
    				e.printStackTrace();
    			}
    		}
    	}
    
  • 相关阅读:
    html笔记
    Git入门学习总结
    使用OpenSSH远程管理Linux服务器
    Linux 网卡驱动的安装
    vi的使用
    Linux下常用的数据恢复工具
    网络文件系统(NFS)的使用
    文件系统管理
    磁盘存储管理
    用户权限管理
  • 原文地址:https://www.cnblogs.com/wujianbo123/p/7637041.html
Copyright © 2011-2022 走看看