-
MySQL
MySQL资料,非常好用,希望对大家有用,值得推荐,加油(MySQL data, very easy to use, we want to be useful, it is recommended, refueling)
- 2016-01-13 19:47:56下载
- 积分:1
-
mysql
银行模拟业务,有数据建表,实现相关业务,通过数据库操作可以进行html操作(database of bank)
- 2011-07-01 21:21:42下载
- 积分:1
-
activiti工作流--请假实例
采用spring activiti对于请假流程的实例。对于新手来说还是不错的教程。流程部署,启动,审批以及归档。可以通过这个案例来研究activiti的整个操作流程。算是activiti一个从入门到入行的简单DEMO实例
- 2023-05-30 06:40:05下载
- 积分:1
-
数据库 企业人事
数据库课程设计报告 企业人事(含代码)
- 2022-04-21 05:35:23下载
- 积分:1
-
THis a web framework that use to do text parsing and extraction and update the t...
THis a web framework that use to do text parsing and extraction and update the text extract in a notepad file into the website. Using Django and mysql.-THis is a web framework that use to do text parsing and extraction and update the text extract in a notepad file into the website. Using Django and mysql.
- 2022-09-08 00:45:03下载
- 积分:1
-
器官捐赠库PHP项目
和公司的捐赠是器官捐献的一年;
- 2022-04-29 06:51:15下载
- 积分:1
-
企业级电子商城
企业级的电子商城开源项目,很多东西可以直接用
- 2022-03-18 00:55:22下载
- 积分:1
-
MySQL必知必会(文字版)
说明: mysql必会知识点。
列举mysql中基础知识点及相关的实践。(MySQL must know knowledge.
List the basic knowledge points and related practice in MySQL.)
- 2020-12-10 21:45:54下载
- 积分:1
-
在线商品销售
public class DBConnection {
private Connection connection;
private String db_Name = "qian";
private String db_User = "root";
private String db_Password = "lubing";
public DBConnection(){
this.getConection();
}
/*
* 得到Connection对象。
*/
public Connection getConection(){
try {
// 加载数据库驱动
Class.forName("com.mysql.jdbc.Driver");
// 指定连接数据库的URL
String url = "jdbc:mysql://localhost:3306/" + db_Name;
// 通过DriverManager的getConnection()建立连接
connection = DriverManager.getConnection(url, db_User, db_Password);
if (connection == null) {
System.out.println("数据连接出错了!");
}
} catch (Exception e) {
e.printStackTrace();
}
return connection ;
}
/*
* 关闭数据集/语句/连接对象
*/
public void close(Resul
- 2022-01-26 04:27:59下载
- 积分:1
-
股票分析系统
将选取的股票数据传输到系统中,系统能够将数据进行处理,然后将所选取的股票的近期走势用折线图的形式展现出来,这样更方便的有利于使用者很直观的观察到股票的行情,可以方便的选取股票,保证人们的利益。
- 2022-07-11 13:34:40下载
- 积分:1