1——加载驱动—— Class.forName("com.mysql.jdbc.Driver"); 2——建立连接—— Connection con = DriverManager.getConnection(url,userName,password); 3——创建执行环境—— Statement ...
分类:
数据库 时间:
2021-07-02 15:44:54
阅读次数:
0
任务调度: 是指系统在某个时间执行的特定的命令或程序。 任务调度分类: 1.系统任务调度: 有些重要的工作必须周而复始地执行。如病毒扫描、日志清理等。在/etc目录下有一个crontab文件,这个就是系统任务调度的配置文件。 2.用户任务调度: 个别用户可能希望执行某些程序,比如对mysql数据库的 ...
分类:
系统相关 时间:
2021-07-02 15:38:49
阅读次数:
0
1 5个MySQL使用问题 1)关于count(*) 知识点:MyISAM会直接存储总行数,InnoDB则不会,需要按行扫描。 潜台词是,对于select count(*) from t; 如果数据量大,MyISAM会瞬间返回,而InnoDB则会一行行扫描。 实践:数据量大的表,InnoDB不要轻易 ...
分类:
数据库 时间:
2021-07-02 15:38:31
阅读次数:
0
1、 https://www.cnblogs.com/zhaoyingjie/p/6160363.html 开始以为是这个样子: [python] view plain copy class BlogForm(forms.Form): title = forms.CharField(required ...
分类:
其他好文 时间:
2021-07-02 15:30:38
阅读次数:
0
1.进入MySql数据库 mysql -uroot -p 2.查看数据库show databases; 3.创建数据库(GoTest)CREATE DATABASE GoTest 4.创建数据表()USE GO_TEST;CREATE TABLE `User`( `Id` BIGINT(20) NO ...
分类:
数据库 时间:
2021-07-01 17:27:15
阅读次数:
0
product 表 product_name、spu、create_datetime 想要查找商品名称中包涵短袖的商品一共有多少个 select count(*) from product where product_name like "%短袖%" shop 表 中有shop_name、chann ...
分类:
数据库 时间:
2021-07-01 17:22:17
阅读次数:
0
1.retrofit.create 创建retrofit 2.loadServiceMethod(method).invoke(args) 动态代理method,并在repos.enqueue 中调用invoke 3.ServiceMethod.parseAnnotations(this, meth ...
分类:
其他好文 时间:
2021-07-01 17:14:51
阅读次数:
0
1、Oracle用户下操作,创建证书 mkdir /home/oracle/wallet orapki wallet create -wallet "/home/oracle/wallet" -pwd WalletPasswd123 -auto_login_local 创建一个自签名证书并将其加载到 ...
分类:
数据库 时间:
2021-07-01 16:57:28
阅读次数:
0
osmdroid's MapView is basically a replacement for Google's MapView class. First of all, create your Android project, and follow HowToMaven if you're u ...
分类:
移动开发 时间:
2021-07-01 16:54:55
阅读次数:
0
(#5题) 请求首行,请求头,请求体 # 1 restful规范--10条 # 2 django上写符合restful规范的接口 # 3 drf写接口 # 4 APIView--》继承了原生View 》get,post方法 -(为什么get请求来了,就会执行get方法:原生View的dispatch ...
分类:
其他好文 时间:
2021-07-01 16:52:50
阅读次数:
0