摘要:
SQLServer新建外键(手动) 点击进入页面 选择列-->右键添加外键 添加外键 通过外键关联查询 left join 阅读全文
2020年6月10日
2020年6月9日
摘要:
数据库事务操作 #region 事务 /// <summary> /// 事务: 显示事务和隐式事务 /// 显示事务:手动操作的 /// 隐式事务:平常的一条SQL语句 /// </summary> /// <param name="sqlList">sql语句list</param> /// < 阅读全文
摘要:
SQL数据库增删改查方法封装 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; 阅读全文
摘要:
查询单条数据 //数据库语句 select ClassId, ClassName from StudentClass where ClassId=1 //C# 数据库查询多条数据 //定义SQL语句 string sql = "select ClassId, ClassName from Stude 阅读全文
2020年6月2日
摘要:
SQLserver连接数据库操作 using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; 阅读全文
摘要:
connection 帮我们在应用程序和数据库之间建立连接关系 Comond 发送命令,进行数据源和应用程序的通话 DataReader 解析命令,读取数据 DataAdaptor 适配器, 把数据库数据读到数据集(内存)里面 不占用数据库资源 新建查询 选中查询的数据库右键新建查询 条件查询 查询 阅读全文
摘要:
连接数据库 点击视图 > sql server对象资源管理器 点击添加 SQL server 连接数据库 添加数据库 可改数据库名 新建表操作 保存表修改 表中添加数据 保存修改 数据库和项目的关联操作 复制数据库连接名 创建项目和数据库的连接 打开服务器资源管理器 点击确定即成功 主键 唯一标识表 阅读全文
摘要:
第一种方法 点击“ 》服务,然后 搜索框》管理工具 选择服务 在弹出的窗口右边找到sql server服务,右键sql server服务,点击启动即可。 第二种方法 点击开始--》所有程序--找到Microsoft SQL Server 2008--》配置工具,打开sql server配置管理器界面 阅读全文
2020年6月1日
摘要:
list泛型的用法和示例 using System; using System.Collections.Generic; //必须引用 using System.Linq; using System.Text; namespace _07List泛型集合 { class Program { stat 阅读全文