
数据库
数据库
Lucky Every Day
这个作者很懒,什么都没留下…
展开
-
ORM - Entity Framework Core(Sqlite) --Demo(一)
环境 VS 2019安装 NuGet 包添加 DBContxt 类using System;using System.Collections.Generic;using System.Text;using Microsoft.EntityFrameworkCore;namespace Demo_2021_3_23{ public class DBContxt : DbContext { public string _strConn = s..原创 2021-03-24 11:02:43 · 323 阅读 · 2 评论 -
MySQL 配置
MySql Windows 配置环境:MySql 免安装版以管理员方式打开Dos界面cd到mysql的bin目录安装服务 MySql --install初始化服务 Mysql --initialize --console (会随机生成root账号的秘密)开启服务 net start mysql登录MySQL数据库 MySQL -u root -p (回车后输入随机生成的秘密)登录成功后修改root账号秘密 ALTER USER ‘root’@‘localhost’ IDENTIFIED原创 2021-04-19 09:11:07 · 123 阅读 · 0 评论