菜鸟的问题
好记性不如烂笔头~。~
摘要: 1.触发器 ①含义: 触发器为特殊类型的存储过程,可在执行SQL语句事件时自动生效。 ②分类: SQL Server 包括三种常规类型的触发器:DML 触发器、DDL 触发器和登录触发器。 ③创建语法: IF OBJECT_ID (N'触发器名称', N'TR') IS NOT NULL DROP 阅读全文
posted @ 2020-07-07 17:10 ArSang-Blog 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1.Mysql5.7-sql_mode MySQL 5.6以后timestamp设定默认值规则改变,不能为”0000 00-00 00:00:00”,一般安装的5.7版本的sql_mode(系统变量)配置为严格模式,在严格模式下将控制我们在sql脚本的值限制。 2.常见异常: --执行语句: CRE 阅读全文
posted @ 2020-07-01 16:34 ArSang-Blog 阅读(2176) 评论(0) 推荐(1) 编辑
摘要: 1.环境配置 ①安装环境:华为云ECS云服务器 ②关闭防火墙: [~] # systemctl stop firewalld --关闭防火墙 [~] # service firewalld status --查看防火墙状态 ③禁用fastestmirror插件的加速: [~] # vi /etc/y 阅读全文
posted @ 2020-03-18 09:51 ArSang-Blog 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1.安装三个插件:JIRA plugin、Jira Issue Updater、jira-ext Plugin 2.添加Job的对应配置参数 3.添加job构建后的备注信息 4.配置Jenkins的对应配置:系统管理 - 系统设置 ①在JIRA模块下新增对应的信息 ②添加凭证 ③配置jira-ext 阅读全文
posted @ 2020-01-01 11:29 ArSang-Blog 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 1.简单连接说明 import pymysql # 打开数据库连接 # 依次是:localhost,用户名,密码,数据库名 db = pymysql.connect('localhost', 'root', '123456', 'webcms') # 使用 cursor() 方法创建一个游标对象 c 阅读全文
posted @ 2019-12-31 17:50 ArSang-Blog 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1.Map函数 - 列表解析 ①.map()函数解析 (1).python源码信息 C:\Users\ArSang>python Python 3.6.3rc1 (v3.6.3rc1:d8c174a, Sep 19 2017, 16:39:51) [MSC v.1900 64 bit (AMD64) 阅读全文
posted @ 2019-12-28 14:20 ArSang-Blog 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 1.core3.1调试时,MVC项目修改视图,无法直接生效? 阅读全文
posted @ 2019-12-17 13:12 ArSang-Blog 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1.判断一个值是否是List数组,如果不是,将其转化为List x = '123' print('原类型:%s' % type(x)) def isiterable(obj): try: iter(obj) return True except TypeError: # not iterable r 阅读全文
posted @ 2019-12-14 13:45 ArSang-Blog 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1.面图: 2.代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.Data; using System.Da 阅读全文
posted @ 2019-11-19 10:11 ArSang-Blog 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1.获取指定文件夹下所有文件的路劲信息 using Microsoft.IdentityModel.Protocols; using System; using System.Collections.Generic; using System.Configuration; using System. 阅读全文
posted @ 2019-10-30 18:11 ArSang-Blog 阅读(3011) 评论(0) 推荐(0) 编辑