最近做产品开发,同时要支持MySQL与Oracle两种数据库,查了很多关于MySQL与Oracle在数据类型上的差异,下面这些还是比较靠谱的,特记录下。 其中TINYINT在mysql中表示范围是-128-127,对应oracle应该用3位表示,所以应该用NUMBER(3,0)代替,当然后者的范围确 ...
分类:
数据库 时间:
2020-04-25 12:48:46
阅读次数:
128
1、下载镜像 docker pull mysql 5.7.29 2. 启动 docker run --restart=always --privileged=true -d -v /root/mysql/data/:/var/lib/mysql -v /root/mysql/conf:/etc/my ...
分类:
数据库 时间:
2020-04-24 01:29:16
阅读次数:
95
Centos7系统安装Zabbix4.4步骤详解 1. 虚拟机中安装Centos7系统 本次实验使用最小系统安装,安装完后可以先进行内核软件更新(yum -y update)时间比较久,快速配置可以忽略此步骤。 2.关闭Centos7的SELinux和防火墙配置 关闭SELinux [root@za ...
分类:
其他好文 时间:
2020-04-23 19:21:39
阅读次数:
374
个人博客 "http://www.milovetingting.cn" Jetpack学习 WorkManager WorkManager是什么 可以轻松调度即使在应用退出或设备重启时仍应运行的可延迟异步任务,不适用于应用进程结束时能够安全终止的运行中的后台工作,也不适用于需要立即执行的任务。 简单 ...
分类:
其他好文 时间:
2020-04-20 21:37:21
阅读次数:
56
创建的docker-compose.yml文件version: '3.1' services: nginx: restart: always image: nginx container_name: nginx ports: - 80:80 volumes: - ./nginx.conf:/etc/ ...
分类:
其他好文 时间:
2020-04-20 12:01:49
阅读次数:
66
5.3 Using this-> 5.3 this->的使用 For class templates with base classes that depend on template parameters, using a name x by itself is not always equiva ...
分类:
其他好文 时间:
2020-04-19 14:53:26
阅读次数:
50
一、服务器docker开启远程访问 在ExecStart这一行后添加 ,如下图 重启docker 确保服务器安全组开放2375端口 注意:直接开放2375端口意味着其他任何人也可以直接操作服务器,这里仅做测试用,正式服务器要加秘钥验证 二、安装Docker插件&配置Docker服务器 1.打开Fil ...
分类:
其他好文 时间:
2020-04-19 12:31:21
阅读次数:
181
Problem : Given a positive integer, check whether it has alternating bits: namely, if two adjacent bits will always have different values. Example 1: ...
分类:
其他好文 时间:
2020-04-18 22:43:40
阅读次数:
74
Problem : You are given n pairs of numbers. In every pair, the first number is always smaller than the second number. Now, we define a pair (c, d) can ...
分类:
其他好文 时间:
2020-04-18 10:09:19
阅读次数:
67
原文:VSCODE 远程开发树莓派 1 安装VSCODE REMOTE SSH插件 2 打开插件配置 shift+ctlr+P , 输入remote-SSH:setting 勾选 Always reveal the SSH login terminal. 3 插件安装完成之后,左边菜单会多一个“远程... ...
分类:
其他好文 时间:
2020-04-16 00:39:10
阅读次数:
520