上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: --切换到master数据库 use master go --创建cpms数据库 --①主数据文件名为CPMS_data1.mdf,文件大小为20MB,最大文件大小为100MB,文件增量为10MB; --②事务日志文件名为CPMS_log.ldf,文件大小为20MB,最大文件大小为50MB,文件增量 阅读全文
posted @ 2024-04-09 21:59 pionier 阅读(24) 评论(0) 推荐(0)
摘要: 现场训练 --1.1 切换至master数据库中; use master go --1.2 删除已创建的Cpms数据库; drop database cpms go --1.3、创建“CPMS”数据库。该数据库保存路径:c:\CPMS文件夹。其中: --①主数据文件名为CPMS_data1.mdf, 阅读全文
posted @ 2024-04-09 21:39 pionier 阅读(44) 评论(0) 推荐(0)
摘要: --创建电脑销售管理系统数据库 --切换到master数据库 use master --切换数据库 go --删除数据库 --drop database --go --3-1 创建“CPMS”数据库。该数据库包括2个文件,保存路径:D:\CPMS文件夹。其中: --①主数据文件名为CPMS_data 阅读全文
posted @ 2024-04-09 21:38 pionier 阅读(22) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EventHa 阅读全文
posted @ 2024-04-09 21:28 pionier 阅读(16) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; //ArrayList的简单例子 using System.Collections;//引用集合的 命名空间 namespace 阅读全文
posted @ 2024-04-09 21:26 pionier 阅读(9) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 常用类 { class Program { static void Main(string[] args) 阅读全文
posted @ 2024-04-09 21:25 pionier 阅读(8) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace is和as { class Program { static void Main(string[] args 阅读全文
posted @ 2024-04-09 21:24 pionier 阅读(6) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 继承 { public class chinese : person//定义一个chinese派生类,继承自 阅读全文
posted @ 2024-04-09 21:22 pionier 阅读(10) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 模拟银行_19_4_30 { class account//普通账户 { //字段--私有 //privat 阅读全文
posted @ 2024-04-09 21:21 pionier 阅读(10) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 引用类型 { class Program { class DataTypeTest { public int 阅读全文
posted @ 2024-04-09 20:12 pionier 阅读(10) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页