01 2020 档案
摘要:1.创建数据库 use master go if exists(select * from sysdatabases where name='Test') begin select '该数据库已存在' drop database Test --如果该数据库已经存在,那么就删除它 end else b
阅读全文
摘要:C#连接SQL Server数据库,并解决 “已有打开的与此 Command 相关联的 DataReader,必须首先将它关闭” using System; using System.Collections.Generic; using System.Linq; using System.Text;
阅读全文