数据库操作: create database db_name charset utf8;#创建数据库 drop database db_name;#删除数据库 use db_name;#切换数据库 show databases;#查看所有数据库 表操作: 创建表: 数据类型: 整形: tinyint ...
分类:
数据库 时间:
2020-04-25 17:09:10
阅读次数:
92
一、总述String是字符串常量,StringBuffer和StringBuilder是字符串变量;StringBuffer线程安全而StringBuilder是不安全的二、String与两者的区别String: 1 public final class String 2 implements ja... ...
分类:
其他好文 时间:
2020-04-25 16:47:41
阅读次数:
71
1、前面搭建好了简单的repmgr集群,这时查看集群和repmgr服务状态,可知repmgrd并未运行 [postgres@localhost bin]$ ./repmgr cluster show ID | Name | Role | Status | Upstream | Location | ...
分类:
其他好文 时间:
2020-04-25 00:55:29
阅读次数:
85
Server端: #include <iostream> #include <WinSock2.h> #pragma comment(lib, "ws2_32.lib") int main() { // 初始化Winsock 2.2 WSADATA wsaData; if (WSAStartup(M ...
Environment "Ubuntu 16.04 LTS" install selenium You can use pip install selenium, maybe specify the version Download ChromeDriver this "website" downl ...
分类:
系统相关 时间:
2020-04-24 13:16:08
阅读次数:
94
原文:MySQL数据库创建随机测试数据 (1)创建测试表 create table test01 ( id1 int not null auto_increment, name varchar(30), primary key(id1) ); create table test02 ( id2 in... ...
分类:
数据库 时间:
2020-04-24 12:59:39
阅读次数:
167
窗体的显示与隐藏: Form2.Show;//显示该窗体,是过程,代码会继续往下执行 Form2.ShowModal{显示该窗体,是函数,该窗体显示时其他窗体不能进行任何操作。 不关闭该窗体,代码不会往下执行。该函数有一个整型返回值, 0代表mrNone,1代表mrOK,2代表mrCancel} H ...
```python"""1、指令: v-once: {{ msg }} v-cloak: 防止页面加载抖动 v-show:绑定的变量为布尔类型 {{ msg }},隐藏时,任然在页面中通过display:none渲染 v-if|v-else-if|v-else: 前分支成立会屏蔽后分支,else分支... ...
分类:
其他好文 时间:
2020-04-23 23:31:26
阅读次数:
142
散点图绘制 from matplotlib import pyplot as plt import random from matplotlib import font_manager myfont = font_manager.FontProperties(fname="C:\Windows\Fo ...
分类:
其他好文 时间:
2020-04-23 23:15:01
阅读次数:
75
1 DC直流电源插座实物图 2 DC直流电源插座PCB封装图 3 DC直流电源插座原理图 4 参考 2.1DC插头插座 https://v.youku.com/v_show/id_XNDI1ODA3MjI4.html?firsttime=301 ...
分类:
其他好文 时间:
2020-04-23 21:07:15
阅读次数:
51