2022年10月1日

sql提示注册表中无 \100\ConfigurationState的解决方法

摘要: 找到HKEY_LOCAL_MACHINE\SOFTWARE\\Microsoft\Microsoft SQL Server\100\ConfigurationState,将当中CommonFiles的键值改为3 若无此项,添加新项即可 阅读全文

posted @ 2022-10-01 00:07 数迹 阅读(242) 评论(0) 推荐(0) 编辑

2022年9月30日

安装SQL server 提示重新启动计算机失败怎么解决

摘要: Win+R 输入 regedit 回车 双击,清空值,退出注册表 阅读全文

posted @ 2022-09-30 23:50 数迹 阅读(168) 评论(0) 推荐(0) 编辑

2022年4月2日

DataGridView插入指定类型的列

摘要: DataGridView插入指定类型的列 插入DataGridViewCheckBoxColumn列 DataGridViewCheckBoxColumn column = new DataGridViewCheckBoxColumn();{ column.HeaderText = "选中"; co 阅读全文

posted @ 2022-04-02 14:50 数迹 阅读(202) 评论(0) 推荐(0) 编辑

2022年3月23日

菜单制作过程笔记1

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient; namespace Menu{ class 阅读全文

posted @ 2022-03-23 16:23 数迹 阅读(26) 评论(0) 推荐(0) 编辑

2020年1月8日

${pagecontext.request.contextpath}绝对路径理解

摘要: ${pagecontext.request.contextpath}绝对路径理解 ${pageContext.request.contextPath}是JSP取得绝对路径的方法,等价于<%=request.getContextPath()%> 。也就是取出部署的应用程序名或者是当前的项目名称 比如我 阅读全文

posted @ 2020-01-08 20:32 数迹 阅读(880) 评论(0) 推荐(1) 编辑

2020年1月4日

eclipse中修改JSP模板中的默认编码

摘要: 在eclipse中依次点击Window >Preference >Web >JSP Files,修改Encoding为ISO 10646/Unicode(UTF-8)即可。 阅读全文

posted @ 2020-01-04 22:01 数迹 阅读(159) 评论(0) 推荐(0) 编辑

2020年1月3日

hibernate的ddl-auto属性

摘要: 在application配置文件中如何配置 spring.jpa.hibernate.ddl-auto=create-drop可选参数 create 启动时删数据库中的表,然后创建,退出时不删除数据表 create-drop 启动时删数据库中的表,然后创建,退出时删除数据表 如果表不存在报错 upd 阅读全文

posted @ 2020-01-03 09:41 数迹 阅读(1364) 评论(0) 推荐(0) 编辑

乱码-eclipse显示中文16进制的

摘要: (1)调整eclipse设置 windows preferences--general--workspace--Text file ecoding 设置为other:utf-8 (2)打开项目,在resources中 右击application.properties,右键菜单中选择propertie 阅读全文

posted @ 2020-01-03 09:23 数迹 阅读(730) 评论(0) 推荐(0) 编辑

2020年1月2日

在写数据库相关项目时,出现The server time zone value '�й���׼ʱ��' is unrecogni异常。

摘要: 解决办法: spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.datasource.url=jdbc:mysql://127.0.0.1:3306/student?serverTimezone=UTCspring.d 阅读全文

posted @ 2020-01-02 23:14 数迹 阅读(2676) 评论(0) 推荐(0) 编辑

mysql5.7.28安装和配置

摘要: 一、安装:这个真木啥说的,解压下就算安装了 二、配置:配置真叫个麻烦,麻烦到记录都懒得记了,直接复制过来一篇 Windows下mysql-5.7.28下载、安装、配置教程图文详解 更新时间:2019年12月23日 08:55:54 作者:乐乐Blog 我要评论 这篇文章主要介绍了Windows下my 阅读全文

posted @ 2020-01-02 22:24 数迹 阅读(5298) 评论(0) 推荐(0) 编辑

导航