本文目录一览:
网页怎么和mysql数据库交互
如果是PHP,就使用PHP的MYSQL类函数:
mysql_connect(),连接数据库.
mysql_query(),执行查询。
如何使用Java与Mysql进行数据交互
使用jdbc驱动 六个步骤
创建链接
加载驱动
获取示例
执行sql语句
获取结果集
关闭连接
代码示例
import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;public class DbDemo {
public static void main(String[] args) { // TODO Auto-generated method stub
ResultSet result = null;
Connection con = null;
Statement statement = null; try { // 第0步:将mysql 的jdbcjar包加入到引用库中来
// 第一步:将想要连接的数据库驱动类加载到JVM中来,加载过程中并向DriverManager注册Driver
// 成功加载后,会将Mysql的驱动Driver类的实例注册到DriverManager类中。
//使得下面我们获取Connection只需要通过DriverManager就可以了。我不需要通过每个数据库具体的Driver。
Class.forName("com.mysql.jdbc.Driver").newInstance(); // 第二步,通过DriverManager获取一个和mysql的连接实例con
String JDBCUrl = "jdbc:mysql://localhost:3306/test?useUnicode=truecharacterEncoding=utf-8";//
String userName = "root";
String password = "1557862201"; // 接受一个jdbcurl,username,password;
con = DriverManager.getConnection(JDBCUrl, userName, password); // 第三步:通过con连接获取到Statement实例,执行sql语句
statement = con.createStatement();// statement实例是用于一些不带参数的sql执行,查询,更新,插入,删除操作都可以但是需要构建一个没有占位符的sql字符串
// 第四步,statement执行sql语句,查询到的结果集到ResultSet实例,简单查询,没有where语句的查询
result = statement.executeQuery("select * from student"); // 第五步:从结果集中获取数据
while (result.next()) { // 根据test库中student表格列名读取数据
int id = result.getInt("id");
String name = result.getString("_stuName");
String number = result.getString("_stuNumber");
String Grade = result.getString(result.findColumn("_stuGrade"));
String Address = result.getString(result.findColumn("_stuAddress"));
System.out
.println("name= " + name + " number= " + number + " Grade= " + Grade + " Address= " + Address);
} // 插入语句
// statement.executeUpdate("");
insert(statement); // 执行带参数的查询,有where语句的查询
int id = 2;
executeQuery(con, id); // 执行更新操作
updateDate(con, 2);
delete(con, "XX");// 删除数据行
} catch (ClassNotFoundException e) { // TODO Auto-generated catch block
System.out.println("找不到驱动程序类 ,加载驱动失败!");
e.printStackTrace();
} catch (InstantiationException e) { // TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) { // TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException ex) { // TODO Auto-generated catch block
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
ex.printStackTrace();
} finally { // 第六步:释放资源
/**
* 关闭JDBC对象 操作完成以后要把所有使用的JDBC对象全都关闭,以释放JDBC资源,关闭顺序和声 明顺序相反: 1、关闭记录集
* 2、关闭声明 3、关闭连接对象
*/
if (result != null) {// 关闭结果集
try {
result.close();
} catch (SQLException e) { // TODO Auto-generated catch block
e.printStackTrace();
}
result = null;
} if (statement != null) {// 关闭执行sql语句代码块
try {
statement.close();
} catch (SQLException e) { // TODO Auto-generated catch block
e.printStackTrace();
}
statement = null;
} if (con != null) {// 关闭连接
try {
con.close();
} catch (SQLException e) { // TODO Auto-generated catch block
e.printStackTrace();
}
con = null;
}
}
}
如何使用C与Mysql进行数据交互
可以用otl库,这个库用起来还是很方便的
可以找一个这个库的使用文档,网上很多的
C使用这个库可以链接mysql,调用mysql存储过程等
mysql 如何实现2个数据库 之间的交互
同服务器的话采用 库名.表名就可以跨库操作
例如数据库schema1(含有表A)和schema2(含有表B)
在schema2中想访问schema1的A表,直接select * from schema1.A