摘要: 说明:propertyGrid的使用 ,其中涉及到一个复制到粘贴版功能 1:先建立UI界面 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using Sy 阅读全文
posted @ 2017-04-25 23:03 逍遥小天狼 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 与数据库进行连接交互 方法一 #region 01连接对象 //01 连接字符串 string connstr = "server=.;uid=sa;pwd=sa;database=DemoDB;"; SqlConnection conn = new SqlConnection(connstr); 阅读全文
posted @ 2017-04-25 17:56 逍遥小天狼 阅读(112) 评论(0) 推荐(0) 编辑
摘要: SQL 结构化查询语言(Structured Query Language) DDL DML DCL 在此不再对其进行详细解释 1 DDL 数据库定义语言 1.1 创建数据库脚本 --DDL create drop alter --创建数据库 create database TestDB; --删除 阅读全文
posted @ 2017-04-25 09:42 逍遥小天狼 阅读(153) 评论(0) 推荐(0) 编辑