1. # -*- encoding=utf8 -*- __author__ = "1003441" from airtest.core.api import * auto_setup(__file__) # 日志模块 from airtest.report.report import simple_ ...
分类:
其他好文 时间:
2021-05-24 04:56:48
阅读次数:
0
一、DDL 1.创建表 CREATE TABLE mytable ( # int 类型,不为空,自增 id INT NOT NULL AUTO_INCREMENT, # int 类型,不可为空,默认值为 1,不为空 col1 INT NOT NULL DEFAULT 1, # 变长字符串类型,最长为 ...
分类:
数据库 时间:
2021-05-24 04:55:17
阅读次数:
0
01.表操作 1.1 创建表 create table students( id int unsigned primary key auto_increment, name varchar(20), # 姓名长度为 20 age int unsigned, # 年龄为正整数 height decim ...
分类:
数据库 时间:
2021-05-24 04:45:13
阅读次数:
0
修改了本地的代码,然后使用: git add file git commit -m '修改原因' 执行commit后,还没执行push时,想要撤销这次的commit,该怎么办? 解决方案: 使用命令: git reset --soft HEAD^ 这样就成功撤销了commit,如果想要连着add也撤 ...
分类:
其他好文 时间:
2021-05-24 04:41:38
阅读次数:
0
在项目中遇到读取以json格式存储的配置文件,为了方便操作,将文件内容读取出来并转换为json对象,本文使用的是fastjson import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org. ...
分类:
编程语言 时间:
2021-05-24 04:37:23
阅读次数:
0
使用用户对数据库创建数据表时报权限不足解决方法 grant connect, resource , dba to FORMDESIGN; grant create session to FORMDESIGN; grant create session,create table to FORMDESI ...
分类:
数据库 时间:
2021-05-24 04:31:11
阅读次数:
0
kvm虚拟机快照创建与管理 KVM的快照功能和VMware一样,可以实现热备和回滚的功能,在进行快照之前需要确保磁盘格式必须是qcow2,因为raw格式是不支持快照的。 开启虚拟机 virsh start test #开启虚拟机 在宿主机使用virsh snapshot-create命令为指定的KV ...
分类:
其他好文 时间:
2021-05-24 04:18:59
阅读次数:
0
<sql id="insertColumn"> data_job_id, ds_info, src_ds_type, dst_ds_type, scene_state, last_checked_time, check_period_ms, last_round_reset_time, round_ ...
分类:
其他好文 时间:
2021-05-24 04:16:16
阅读次数:
0
import scala.util.parsing.json.JSON._import scala.io.Source val js_file="pspldata.area%s_tableMapping.json".format(1)val js_source = Source.fromFile(j ...
分类:
Web程序 时间:
2021-05-24 04:09:53
阅读次数:
0
解决方案在入口文件夹public下查看.htaccess是否存在。不存在则新建,存在的话,那内容替换为下面这串代码 就可以解决Not Fund #<IfModule mod_rewrite.c># Options +FollowSymlinks -Multiviews# RewriteEngine ...
分类:
Web程序 时间:
2021-05-24 04:03:07
阅读次数:
0