MySQL数据库设计规范(仅供参考) 目录 规范背景与目的 设计规范2.1 数据库设计2.1.1 库名2.1.2 表结构2.1.3 列数据类型优化2.1.4 索引设计2.1.5 分库分表、分区表2.1.6 字符集2.1.7 程序DAO层设计建议2.1.8 一个规范的建表语句示例2.2 SQL编写2. ...
分类:
数据库 时间:
2021-07-26 16:38:19
阅读次数:
0
直接上代码: package tools import ( "bytes" "crypto/aes" "crypto/cipher" ) func PKCS5Padding(ciphertext []byte, blockSize int) []byte { padding := blockSize ...
分类:
其他好文 时间:
2021-07-19 16:44:12
阅读次数:
0
作者:温安适 来源:my.oschina.net/floor/blog/4960148 引言 某个忙(mo)碌(yu)的下午,旁边的刘哥(老江湖,从业5年+)突然发出了一声叹息:“哎,mysql 出bug了,有索引不走”。 作为一个热心的人,我立即说到:“是不是,对索引字段做了函数操作”。 刘哥沉思 ...
分类:
数据库 时间:
2021-07-05 17:37:18
阅读次数:
0
一、MySQL的安装 说明: Linux下软件的安装通常有三种方式:二进制、rpm、yum三种方式。它们三个具体的区别参考博客: https://www.cnblogs.com/LiuChunfu/p/8052890.html MySQL的下载: 因为我使用的是阿里云服务器,联网的,所以我直接在li ...
分类:
数据库 时间:
2021-07-02 16:00:54
阅读次数:
0
""" 控制文件读写内容的模式 t 文本 1.读写都是以str(unicode)为单位 2.文本文件 3.必须指定encoding='utf-8'"""# 没有指定encoding参数操作系统会使用自己默认的编码# with open('a.txt', mode='rt') as f1: # t模式 ...
分类:
编程语言 时间:
2021-06-25 17:15:48
阅读次数:
0
# Python learning# coding:utf-8"""t: 1.读写都是以字符串(unicode)为单位 2.只能针对文件 3.必须指定字符编码,即必须指定encoding参数b:binary模式 1.读写都是以bytes为单位 2.可以针对所有文件 3.一定不能指定字符编码,即不能指 ...
分类:
编程语言 时间:
2021-06-25 17:14:26
阅读次数:
0
jasypt是一个简单方便的第三方加解密库,可以快速的集成到springboot环境中 引入依赖 <!-- 数据库加密 --> <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boo ...
分类:
数据库 时间:
2021-06-24 18:11:09
阅读次数:
0
问题 数据库大小写不敏感 库名,表名敏感: 配置参数lower_case_table_names 可选值 【0,1】0不敏感,1敏感 数据敏感: 排序规则: *_bin: 表示的是binary case sensitive collation,也就是说是区分大小写。 *_ci: case insen ...
分类:
数据库 时间:
2021-06-21 20:31:26
阅读次数:
0
报错 Starting MySQL... ERROR! The server quit without updating PID file (/usr/local/mysql/$hostname.pid). 应该我在/etc/my.conf配置默认字符集的问题 https://blog.csdn.n ...
分类:
数据库 时间:
2021-06-11 18:02:40
阅读次数:
0
https://juejin.cn/post/6844903859865780231 官方原文 Note that the file property in RollingFileAppender (the parent of TimeBasedRollingPolicy) can be eithe ...
分类:
其他好文 时间:
2021-06-08 23:39:20
阅读次数:
0