当前位置:网站首页>MySQL、sqlserver oracle数据库连接方式
MySQL、sqlserver oracle数据库连接方式
2022-07-07 17:23:00 【Aimin20210819】
编程连接方式
sql server默认端口号为:1433
URL:"jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=dbname"
DRIVERNAME:"com.microsoft.jdbc.sqlserver.SQLServerDriver";
mysql 默认端口号为:3306
URL:jdbc:mysql://localhost:3306/test? user=root&password=&useUnicode=true&characterEncoding=gbk
DRIVERNAME:"com.mysql.jdbc.Driver";
oracle 默认端口号为:1521
URL:"jdbc:oracle:thin:@localhost :1521:orcl";
DRIVERNAME:"oracle.jdbc.driver.OracleDriver";
DOS是Disk Operation System的简称,意为磁盘操作系统
创建表添加注解
CREATE TABLE `t_account_phone_pool` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`update_time` datetime DEFAULT NULL COMMENT '修改时间',
`is_enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据可用 0:不可用;1:可用',
`is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '逻辑删除 0:未删除;1:删除',
`create_user` varchar(20) DEFAULT NULL COMMENT '创建人',
`update_user` varchar(20) DEFAULT NULL COMMENT '修改人',
`account_name` varchar(20) NOT NULL COMMENT '帐号名称',
`phone` varchar(20) NOT NULL COMMENT '号码',
`send_limit_count` int(11) NOT NULL COMMENT '发送限制次数',
PRIMARY KEY (`id`),
KEY `idx_phone_account_name` (`phone`,`account_name`),
KEY `idx_phone` (`phone`),
KEY `idx_account_name` (`account_name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='帐号-号码池表';命令查看表中字段注释(解释)
show full columns from tablename;边栏推荐
- 反爬虫的重点:识别爬虫
- Research and practice of super-resolution technology in the field of real-time audio and video
- 杰理之快速配对,不支持取消配对【篇】
- 解决远程rviz报错问题
- 杰理之关于 TWS 声道配置【篇】
- Numpy——2.数组的形状
- how to prove compiler‘s correctness
- Command mode - unity
- A hodgepodge of ICER knowledge points (attached with a large number of topics, which are constantly being updated)
- Mathematical analysis_ Notes_ Chapter 11: Fourier series
猜你喜欢

Short selling, overprinting and stock keeping, Oriental selection actually sold 2.66 million books in Tiktok in one month

2022.07.02

2022.07.04

Redis master-slave and sentinel master-slave switchover are built step by step

Research and practice of super-resolution technology in the field of real-time audio and video

【RT-Thread env 工具安装】

如何给“不卖笔”的晨光估值?

2022上半年朋友圈都在传的10本书,找到了

2022.07.02

杰理之相同声道的耳机不允许配对【篇】
随机推荐
Version 2.0 of tapdata, the open source live data platform, has been released
解决rosdep的报错问题
testing and SQA_ Dynamic white box test [easy to understand]
PV静态创建和动态创建
In the first half of 2022, I found 10 books that have been passed around by my circle of friends
LeetCode 515(C#)
Experiment 1 of Compilation Principle: automatic implementation of lexical analyzer (Lex lexical analysis)
Uvalive – 4621 CAV greed + analysis "suggestions collection"
How to open an account for stock speculation? Excuse me, is it safe to open a stock account by mobile phone?
what‘s the meaning of inference
Creative changes brought about by the yuan universe
L1-019 who falls first (Lua)
炒股如何开户?请问一下手机开户股票开户安全吗?
[mime notes]
Numpy——2.数组的形状
2022年投资哪个理财产品收益高?
Kirin Xin'an won the bid for the new generation dispatching project of State Grid!
杰理之关于 TWS 交叉配对的配置【篇】
How to estimate the value of "not selling pens" Chenguang?
how to prove compiler‘s correctness