//加载插件 private void LoadPlugins() { string path = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "addons"); //搜索该目录下的所有 ...
1.数据库 1.登陆数据库 使用windows+r健,然后输入cmd,进入命令框,连接用户,sqlplus+用户名/密码 把会话环境改成中文模式: alter session set nls_language='simplified chinese'; 把会话环境改成英文模式: alter sess ...
分类:
数据库 时间:
2020-11-30 15:52:50
阅读次数:
8
用例重跑有两种方法,利用pytest-rerunfailures包,和直接使用@pytest.mark.flaky(reruns=重跑次数,reruns_delay=间隔时间)装饰器。 pytest-rerunfailures包 需安装插件 pip installpytest-rerunfailur ...
分类:
其他好文 时间:
2020-11-30 15:34:12
阅读次数:
5
一、Table Demo CREATE TABLE `employees` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓名', `age` int(11) NOT N ...
分类:
数据库 时间:
2020-11-30 15:26:05
阅读次数:
7
function varargout = tezheng(varargin) gui_Singleton = 1; gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_Openi ...
分类:
移动开发 时间:
2020-11-30 15:23:27
阅读次数:
10
IDEA提示Cannot resolve symbol 'String'解决 https://blog.csdn.net/weixin_43866709/article/details/88604638 idea导入项目时报错Invalid VCS root mapping 解决方法移除即可 htt ...
分类:
编程语言 时间:
2020-11-26 15:21:33
阅读次数:
18
(数据库DataBase,DB)是一个长期存储在计算机内的、有组织的、有共享的、统一管理的数据集合,在关系数据库中,数据库表是一系列二维数组的集合。 数据定义语言(DDL):DROP、CREATE、ALTER 数据操作语言(DML):INSERT、UPDATE、DELETE 数据查询语言(DQL): ...
分类:
数据库 时间:
2020-11-26 14:53:45
阅读次数:
8
Delphi TWebBrowser[7] 获取网页图片(静态和动态) 1、静态图常用方法: uses WinInet function GetLocalFileNameFromIECache(url:string; var LocalFileName:string):DWORD; var D: C ...
# Create your views here.import jsonfrom django.shortcuts import renderfrom django.shortcuts import renderfrom django.http import HttpResponse, HttpRe ...
分类:
其他好文 时间:
2020-11-26 14:35:15
阅读次数:
6
一、约束 1)主键 主键约束=非空约束+唯一约束 主键可以是一个列或者多个列 1)创表添加多个列作为主键 create table score1( sid int not null, cid int not null, PRIMARY key(sid,cid) ); 2)删除主键约束 alter t ...
分类:
数据库 时间:
2020-11-26 14:30:23
阅读次数:
8