摘要:
题目: 第一部分: 新建一个数据库:ADO测试,包含下面两个数据表,使用代码创建,并保留创建的代码文本。 专业表Subject: 专业编号(SubjectCode):nvarchar类型,不能为空,主键 专业名称(SubjectName):nvarchar类型,不能为空 学生表Student: 编号 阅读全文
摘要:
阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Data.SqlClient; 7 8 namespace _06_22 9 { 10 ... 阅读全文
摘要:
数据库防字符串注入攻击:cmd.CommandText = "update student set name=@Sname,sex=@Ssex,birthday=@Sbirthday,score=@Sscore where code = @Scode";cmd.Parameters.Clear(); 阅读全文
摘要:
4 using System; 5 using System.Collections.Generic;using System.Linq; 6 using System.Text; 7 using System.Threading.Tasks; 8 using System.Data.SqlClient; 9 10 namespace 练习题 11 { 12 ... 阅读全文
摘要:
添加数据 阅读全文