摘要:
JDBC - 开发实例-MVC模式 1. 在web.xml中配置连接数据库的信息 web.xml: <context-param> <param-name>server</param-name> //主机名 <param-value>localhost</param-value> </context 阅读全文
摘要:
java连接数据库步骤 1. 加载驱动 Class.forName("com.mysql.java.Driver"); 或: registerDriver(new com.mysql.jdbc.Driver()); 2. 创建连接对象 DriverManager类方法: Connection Dri 阅读全文