mysql数据库__Jdbc直接操作__PreparedStatement__insert

Posted 18513757531

tags:

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

一、代码如下

private void insert_mysql() {
		// 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("insert into user(username, password, phone, email) values(?, ?, ?, ?);");

			ps.setString(1, "wjb");
			ps.setString(2, "wjb");
			ps.setString(3, "wjb");
			ps.setString(4, "wjb");
			
			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();
			}
		}
	}

 

private void insert_Mysql_Two() {
		// 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("insert into user(username, password, phone, email) values(‘332‘, ‘332‘, ‘33‘, ‘322‘);");

			
			
			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();
			}
		}
	}

 

以上是关于mysql数据库__Jdbc直接操作__PreparedStatement__insert的主要内容,如果未能解决你的问题,请参考以下文章

mysql数据库__Jdbc直接操作__PreparedStatement__insert

mysql数据库__Jdbc直接操作__Statement__update

mysql数据库__Jdbc直接操作__Statement__delete

mysql数据库__Jdbc直接操作__Statement__insert

mysql数据库__Jdbc直接操作__PreparedStatement__新增数据库

mysql数据库__Jdbc直接操作__PreparedStatement__数据库备份