资源简介
C# 课程设计 个人信息管理系统 SQL数据库C# 课程设计 个人信息管理系统 SQL数据库
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Data.SqlClient;
using System.Data;
namespace CKeShe
{
class Class1
{
public DataSet ds=new DataSet ();
String connstr = “Data Source=(local);Initial Catalog=db_keshe;Integrated Security=True“;
SqlConnection conn;
public Class1()
{
//String connstr = “Data Source=(local);Initial Catalog=db_keshe;Integrated Security=True“;
conn = new SqlConnection(connstr);
conn.Open();
}
public SqlConnection connect()
{
String connstr = “Data Source=(local);Initial Catalog=db_keshe;Integrated Security=True“;
SqlConnection conn = new SqlConnection(connstr);
return conn;
}
public SqlCommand Command()
{
String connstr = “Data Source=(local);Initial Catalog=db_keshe;Integrated Security=True“;
SqlConnection conn = new SqlConnection(connstr);
SqlCommand comm = new SqlCommand(“select xingcheng from tb_xingcheng“ conn);
return comm;
}
public int Delete(string str1string str2)
{
try
{
SqlCommand comm = new SqlCommand(“delete from “ + str1 + “ where id=‘“ + str2 + “‘“ conn);
comm.ExecuteNonQuery();
//conn.Close();
return 1;
}
catch (Exception e)
{
return 0;
}
}
public int Delete(string str1)
{
try
{
SqlCommand comm = new SqlCommand(str1 conn);
comm.ExecuteNonQuery();
//conn.Close();
return 1;
}
catch (Exception e)
{
return 0;
}
}
public int Insert(string strstring str1 string str2 string str3)
{
try
{
SqlCommand comm = new SqlCommand(“insert into “ + str + “ (xingchengdatebeizhu) values(‘“ + str1 + “‘‘“ + str2 + “‘‘“ + str3 + “‘);“ conn);
comm.ExecuteNonQuery();
//conn.Close ();
return 1;
}
catch (Exception e)
{
return 0;
}
}
public int Insert(string str1)
{
try
{
SqlCommand comm = new SqlCommand(str1 conn);
comm.ExecuteNonQuery();
//conn.Close();
return 1;
}
catch (Exception e)
{
return 0;
}
}
public SqlCommand Select(string str1 string str2string str3)
{
SqlCommand comm = new SqlCommand(“select “+str1+“ from “+str2+“ w
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 53618 2011-05-10 19:08 Ckeshe_0604\CKeShe\1.jpg
文件 20180 2011-04-12 18:48 Ckeshe_0604\CKeShe\2.jpg
文件 63488 2010-09-23 22:52 Ckeshe_0604\CKeShe\3.jpg
文件 35311 2011-04-28 21:48 Ckeshe_0604\CKeShe\4.jpg
文件 28737 2011-06-04 11:59 Ckeshe_0604\CKeShe\5.JPG
文件 323584 2011-06-09 11:09 Ckeshe_0604\CKeShe\CKeShe\bin\Debug\CKeShe.exe
文件 112128 2011-06-09 11:09 Ckeshe_0604\CKeShe\CKeShe\bin\Debug\CKeShe.pdb
文件 5632 2005-11-11 22:25 Ckeshe_0604\CKeShe\CKeShe\bin\Debug\CKeShe.vshost.exe
文件 4988 2011-06-04 15:20 Ckeshe_0604\CKeShe\CKeShe\CKeShe.csproj
文件 4234 2011-06-04 15:59 Ckeshe_0604\CKeShe\CKeShe\Class1.cs
文件 131 2011-06-02 12:59 Ckeshe_0604\CKeShe\CKeShe\Class2.cs
文件 1500 2011-06-04 19:43 Ckeshe_0604\CKeShe\CKeShe\Form1.cs
文件 6409 2011-06-02 16:26 Ckeshe_0604\CKeShe\CKeShe\Form1.Designer.cs
文件 166107 2011-06-02 16:26 Ckeshe_0604\CKeShe\CKeShe\Form1.resx
文件 20832 2011-06-09 11:09 Ckeshe_0604\CKeShe\CKeShe\Form2.cs
文件 34826 2011-06-04 15:24 Ckeshe_0604\CKeShe\CKeShe\Form2.Designer.cs
文件 246763 2011-06-04 15:24 Ckeshe_0604\CKeShe\CKeShe\Form2.resx
文件 1238 2011-06-03 14:25 Ckeshe_0604\CKeShe\CKeShe\Form3.cs
文件 5766 2011-06-02 10:38 Ckeshe_0604\CKeShe\CKeShe\Form3.Designer.cs
文件 5814 2011-06-02 10:38 Ckeshe_0604\CKeShe\CKeShe\Form3.resx
文件 3016 2011-06-03 16:31 Ckeshe_0604\CKeShe\CKeShe\Form4.cs
文件 7090 2011-06-03 15:50 Ckeshe_0604\CKeShe\CKeShe\Form4.Designer.cs
文件 5814 2011-06-03 15:50 Ckeshe_0604\CKeShe\CKeShe\Form4.resx
文件 2536 2011-06-04 11:53 Ckeshe_0604\CKeShe\CKeShe\Form5.cs
文件 6859 2011-06-04 11:37 Ckeshe_0604\CKeShe\CKeShe\Form5.Designer.cs
文件 5814 2011-06-04 11:37 Ckeshe_0604\CKeShe\CKeShe\Form5.resx
文件 2057 2011-06-04 16:10 Ckeshe_0604\CKeShe\CKeShe\Form6.cs
文件 6979 2011-06-04 15:20 Ckeshe_0604\CKeShe\CKeShe\Form6.Designer.cs
文件 5814 2011-06-04 15:20 Ckeshe_0604\CKeShe\CKeShe\Form6.resx
文件 437 2011-06-09 11:18 Ckeshe_0604\CKeShe\CKeShe\obj\CKeShe.csproj.FileList.txt
............此处省略37个文件信息
- 上一篇:c#编写的宿舍管理系统
- 下一篇:C#仿Windows记事本附带设计说明书
相关资源
- C#仿Windows记事本附带设计说明书
- c#编写的宿舍管理系统
- C#实现IP地址查询和手机号码归属地查
- C#扫雷完整项目源码
- C#写的爱情表白程序
- C#断点续传控制台版
- C#计算器,,有简单,还有科学计算器
- C#写的自定义安装包,打包程序源代码
- C#开发crm完全源代码
- VB.NET C# VS sqlite 无法加载 DLL“SQLite.
- VS2012 C#车站售票管理系统数据库
- 小区物业管理系统 管理 C# sql2005
- 用c#做的qq表情包
- 基于C#的学生信息管理系统——有管理
- 强烈推荐:完整的C#源代码之 库存管
- 强烈推荐:完整的C#源代码之 固定资
- 强烈推荐:完整的C#源代码之房屋中介
- C#播放MP3文件
- C#73种经典皮肤skinEngine
- c#人事工资管理系统源代码
- C#解析CAD文件
- C#使用 MQTTnet 快速实现 MQTT 通信 Demo
- 通过PJL协议,获取惠普USB打印机状态
- C#高速找图、模糊找图、透明找图
- 学生成绩管理系统(c# 毕业设计 课程
- ASP.Net课程设计考试管理系统
- C#开发的坦克大战游戏+源码
- Visual C#从入门到精通中文版(PDF格式
- 网络应用编程大作业--《你画我猜》
- C# 拖拽拉伸图片裁剪选框
评论
共有 条评论