2020年6月10日

摘要: SQLServer新建外键(手动) 点击进入页面 选择列-->右键添加外键 添加外键 通过外键关联查询 left join 阅读全文
posted @ 2020-06-10 00:29 g_ices 阅读(875) 评论(0) 推荐(0) 编辑

2020年6月9日

摘要: 数据库事务操作 #region 事务 /// <summary> /// 事务: 显示事务和隐式事务 /// 显示事务:手动操作的 /// 隐式事务:平常的一条SQL语句 /// </summary> /// <param name="sqlList">sql语句list</param> /// < 阅读全文
posted @ 2020-06-09 21:07 g_ices 阅读(157) 评论(0) 推荐(0) 编辑
 
摘要: SQL数据库增删改查方法封装 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; 阅读全文
posted @ 2020-06-09 17:29 g_ices 阅读(460) 评论(0) 推荐(0) 编辑
 
摘要: 查询单条数据 //数据库语句 select ClassId, ClassName from StudentClass where ClassId=1 //C# 数据库查询多条数据 //定义SQL语句 string sql = "select ClassId, ClassName from Stude 阅读全文
posted @ 2020-06-09 16:17 g_ices 阅读(153) 评论(0) 推荐(0) 编辑

2020年6月2日

摘要: SQLserver连接数据库操作 using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; 阅读全文
posted @ 2020-06-02 20:19 g_ices 阅读(578) 评论(0) 推荐(0) 编辑
 
摘要: connection 帮我们在应用程序和数据库之间建立连接关系 Comond 发送命令,进行数据源和应用程序的通话 DataReader 解析命令,读取数据 DataAdaptor 适配器, 把数据库数据读到数据集(内存)里面 不占用数据库资源 新建查询 选中查询的数据库右键新建查询 条件查询 查询 阅读全文
posted @ 2020-06-02 20:18 g_ices 阅读(157) 评论(0) 推荐(0) 编辑
 
摘要: 连接数据库 点击视图 > sql server对象资源管理器 点击添加 SQL server 连接数据库 添加数据库 可改数据库名 新建表操作 保存表修改 表中添加数据 保存修改 数据库和项目的关联操作 复制数据库连接名 创建项目和数据库的连接 打开服务器资源管理器 点击确定即成功 主键 唯一标识表 阅读全文
posted @ 2020-06-02 15:29 g_ices 阅读(156) 评论(0) 推荐(0) 编辑
 
摘要: 第一种方法 点击“ 》服务,然后 搜索框》管理工具 选择服务 在弹出的窗口右边找到sql server服务,右键sql server服务,点击启动即可。 第二种方法 点击开始--》所有程序--找到Microsoft SQL Server 2008--》配置工具,打开sql server配置管理器界面 阅读全文
posted @ 2020-06-02 14:19 g_ices 阅读(399) 评论(0) 推荐(0) 编辑
 
摘要: 数据库类型 关系型数据库 SQLServer 简单易用,适合大中小型企业使用 MySQL 开源,跨平台性好 在网站中应用广泛,适合各类型企业使用 Oracle 产品免费,服务收费,适合大、中型公司使用 DB2 IBM公司的产品 支持多种操作系统、多种类型的硬件和设备 高端应用(主要用于金融行业,比如 阅读全文
posted @ 2020-06-02 13:31 g_ices 阅读(94) 评论(0) 推荐(0) 编辑

2020年6月1日

摘要: list泛型的用法和示例 using System; using System.Collections.Generic; //必须引用 using System.Linq; using System.Text; namespace _07List泛型集合 { class Program { stat 阅读全文
posted @ 2020-06-01 21:23 g_ices 阅读(230) 评论(0) 推荐(0) 编辑