FastReport 3.X var PageLine: integer; //在現在頁列印到第幾行 PageMaxRow: integer=15; //設定每頁列數 procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin P ...
分类:
其他好文 时间:
2021-06-22 18:27:26
阅读次数:
0
建表如下: CREATE TABLE `aes_demo` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_bin DEFAULT NULL, `password` varchar(255) CHARACTER ...
分类:
数据库 时间:
2021-06-22 17:52:33
阅读次数:
0
1. 列举出所有的数据库 命令行查看帮助 sqoop help 列出hadoop02主机所有的数据库 sqoop list-databases --connect jdbc:mysql://hadoop02:3306/ --username root --password 123456 查看某一个数 ...
分类:
其他好文 时间:
2021-06-18 19:33:43
阅读次数:
0
先看看官方安装文档:https://docs.docker.com/engine/install/centos/#prerequisites,得知官方建议Centos7及以上的版本; 其他说明也非常详细,安装方法也推荐了好几种;我这里再整理一下以供学习。 Docker安装: 1、安装依赖包: sud ...
分类:
其他好文 时间:
2021-06-16 17:57:54
阅读次数:
0
首先在VM上安装好CentOS,我安装了CentOS 8 版本,接下来使用Docker官网安装方法https://docs.docker.com/engine/install/centos/,不过安装中出现了一些问题,一一解决。 1、安装过先卸载docker sudo yum remove dock ...
分类:
其他好文 时间:
2021-06-16 17:47:55
阅读次数:
0
from sqlalchemy import Column,String,create_engine,MetaData from sqlalchemy.orm import sessionmaker from sqlalchemy.ext.declarative import declarative ...
分类:
数据库 时间:
2021-06-15 18:05:12
阅读次数:
0
server { listen 80; server_name www.yourweb.com; rewrite ^(.*)$ https://$host$1 permanent; } ...
分类:
Web程序 时间:
2021-06-08 22:57:22
阅读次数:
0
Django实现MySQL读写分离 1. 增加slave数据库的配置 DATABASES = { 'default': { # 写(主机) 'ENGINE': 'django.db.backends.mysql', # 数据库引擎 'HOST': '192.168.103.158', # 数据库主机 ...
分类:
数据库 时间:
2021-06-06 19:02:54
阅读次数:
0
创建表 create table agg_source( \ id UInt8, \ name String, \ city String, \ money UInt32 \ ) engine=MergeTree() \ partition by city \ order by id; 插入数据 i ...
分类:
其他好文 时间:
2021-06-05 18:20:32
阅读次数:
0
创建第一个启动shell脚本,如tomcat_restart.sh,内容 #/bin/sh tomcatmsg=$(ps -ef|grep tomcat|awk '{print $1$8}'|grep '/xxxx/xxx/xxxx/jdk/bin/java/'|wc -l) if [ $tomca ...
分类:
系统相关 时间:
2021-06-03 18:29:06
阅读次数:
0