I'm back.I've get an offer from my current job,as a developer. Also, I decide to maintian my hobby to write down what I've learnt during my closing ti ...
分类:
其他好文 时间:
2021-01-14 10:42:08
阅读次数:
0
简介:mysql 实现主从复制的原理 通过主数据库binlog文件重做实现数据同步(尽量保证mysql版本相同) 1. 准备两台mysql服务 ip1:192.168.44.3 主服务器 ip2:192.168.44.5 从服务器 主服务器 2. 配置my.cnf vim /etc/my.conf ...
分类:
数据库 时间:
2021-01-14 10:34:48
阅读次数:
0
通用 缩进两个空格 等号两边留有空格 文件名为 my-component 组件名 React 文件名:帕斯卡命名 MyComponents ESlint <Foo superLongParam="bar" anotherSuperLongParam="baz" /> <Foo bar="bar" / ...
分类:
其他好文 时间:
2021-01-13 11:16:51
阅读次数:
0
PL/SQL中有个代码优化的功能,里面可以定义规则,挺好用的,跟大家分享下: 1.首先新建一个my.br文件,在文件中复制以下内容 Version=1 RightMargin=90 Indent=4 UseTabCharacter=FALSE TabCharacterSize=4 AlignDecl ...
分类:
数据库 时间:
2021-01-12 10:28:16
阅读次数:
0
1.检查配置文件 my.cnf 如果存在修改为如下值,没有则添加 innodb_large_prefix = 1 innodb_file_per_table = 1 innodb_file_format = Barracuda 2.修改建表语句,添加 row_format=dynamic drop ...
分类:
数据库 时间:
2021-01-11 10:41:29
阅读次数:
0
1.self指的是类实例对象本身(注意:不是类本身)。 class Person: def _init_(self,name): self.name=name def sayhello(self): print 'My name is:',self.name p=Person('Bill') pri ...
分类:
编程语言 时间:
2021-01-08 10:33:43
阅读次数:
0
phpstudy安装的数据库也是默认的3306端口 用户密码默认 root root 要想连接原来本机的数据库需要修改 php mysql的端口号3306 --》》3309 my.ini 修改配置phpstudy 原来的数据库3306在服务中重启一下, 3306 3309 均可使用 ...
分类:
数据库 时间:
2021-01-05 10:45:19
阅读次数:
0
3.1 工作模型(C/S) MySQL 客户端/服务器 类比ssh连接工作原理: 一,本地socket连接方式: (已经封装了IP+端口:用于本地服务的连接) 前提: 需要提前创建xxx@'localhost' 本地用户 [root@db01 ~]# cat /etc/my.cnf | grep s ...
分类:
数据库 时间:
2021-01-02 11:27:32
阅读次数:
0
<body> <!-- 父组件模板 --> <div id="app"> <!-- 如果属性名有 大写 要换小写 并用 - 隔开 如下 --> <cpn :cinfo="info" :child-my-message="message"></cpn> </div> <!-- 子组件模板 --> <t ...
分类:
其他好文 时间:
2021-01-02 11:23:47
阅读次数:
0
<body> <div id="app"> <!-- 3.使用组件 --> <my-cpn></my-cpn> </div> <script src='https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js'></script> <script> // ...
分类:
其他好文 时间:
2021-01-02 11:06:08
阅读次数:
0