摘要: MYSQL Row size too large (> 8126) 的错误 详情 ERROR 1118 Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format 阅读全文
posted @ 2022-05-23 14:42 是卡卡罗特啊 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 访问属性时,其行为类似于字段。不同的是属性通过访问器实现;访问器用于定义访问属性或为属性赋值时执行的语句。 #属性语法 1.赋初始值 public class Person { public string FirstName { get; set; } = string.Empty; } 2.可为 阅读全文
posted @ 2022-04-19 21:21 是卡卡罗特啊 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #方法签名 1.可选的访问级别,默认private 2.可选的修饰符 abstract sealed 3.返回值 4.方法名称 5.参数 ps:对于重载来说,返回类型不属于方法签名 #方法调用 1.位置自变量(1,2)和命名自变量(arg2:2,arg1:1) #继承与重写方法 1.所有类型都直接或 阅读全文
posted @ 2022-04-18 18:09 是卡卡罗特啊 阅读(19) 评论(0) 推荐(0) 编辑
摘要: #SqlServer修改默认端口号后的连接地址 使用客户端连接SqlServer的默认地址为address,port!!! 阅读全文
posted @ 2022-03-09 09:47 是卡卡罗特啊 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 【问题】解决npm install时因无法访问github而报错 ##问题 npm install node-sass时因无法访问github而报错 ##解决 npm install --save node-sass --registry=https://registry.npm.taobao.or 阅读全文
posted @ 2022-02-24 15:16 是卡卡罗特啊 阅读(1058) 评论(1) 推荐(0) 编辑
摘要: Centos7下安装jenkins ##安装 sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo sudo rpm --import https://pkg.jenk 阅读全文
posted @ 2022-02-21 09:39 是卡卡罗特啊 阅读(372) 评论(0) 推荐(0) 编辑
摘要: Centos7下安装git yum安装 sudo yum install -y git ##查看版本 git -version ##设置用户名和邮箱 git config --global user.name "your name" git config --global user.email "y 阅读全文
posted @ 2022-02-21 09:37 是卡卡罗特啊 阅读(22) 评论(0) 推荐(0) 编辑
摘要: centos7下定期备份(全库备份) ##编写bash备份脚本(维护固定数量备份文件) 创建文件mydump_script.sh #!/bin/bash #保存备份个数,备份31天数据 number=31 #备份保存路径 backup_dir=/home/zhanghuang/website/tec 阅读全文
posted @ 2022-02-21 09:36 是卡卡罗特啊 阅读(828) 评论(0) 推荐(0) 编辑
摘要: 1.原始数据 学生成绩表 2.想要获取每个考生最新的考试成绩,网上的例子 SELECT a.* FROM (SELECT * FROM scoreinfo ORDER BY scoreinfo.CreateTime Desc ) as a GROUP BY a.SNum ORDER BY a.Cre 阅读全文
posted @ 2022-02-21 09:34 是卡卡罗特啊 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: 在linux下装java环境 ##下载 wget https://download.oracle.com/otn/java/jdk/8u321-b07/df5ad55fdd604472a86a45a217032c7d/jdk-8u321-linux-x64.tar.gz?AuthParam=1643 阅读全文
posted @ 2022-02-21 09:31 是卡卡罗特啊 阅读(175) 评论(0) 推荐(0) 编辑