资源简介
1.程序适合初学者,对c#以及sql数据库交互、控件使用方面有一定帮助;
2.适合上班族、学生党,对每一笔支出都有章可循!!
3.培养自己节俭的好习惯!!
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.SqlClient;
using System.Data;
using System.Windows.Forms;
namespace Content
{
class DataClass
{
public static SqlConnection com ;
string sql = “Data Source=(local);Database=Content;User=sa;pwd=P@ssw0rd!2“;
// string sql_two = “Data Source=DESKTOP-P9U83GD;Database=db_Content_Two;User=sa;pwd=P@ssw0rd!2“;
//实现数据库的打开
public SqlConnection getcon()
{
com = new SqlConnection(sql);
com.Open();
return com;
}
//实现数据库的关闭
public int con_close()
{
int n = 1;
if (com.State == ConnectionState.Open)
{
com.Close();
com.Dispose();//回收对象
n = 0;
}
else
n = 1;
return n;
}
//实现对数据库表的填充
public DataSet getDataSet(string SQLstr string tableName)
{
getcon();
SqlDataAdapter SQLda = new SqlDataAdapter(SQLstr com);
DataSet My_DataSet = new DataSet();
SQLda.Fill(My_DataSet tableName);
con_close();
return My_DataSet;
}
//读取数据表的数据
public SqlDataReader getread(string SQLstr)
{
getcon();
SqlCommand SQLcom = new SqlCommand(SQLstr com);
SQLcom.ExecuteNonQuery();
SqlDataReader sqlread = SQLcom.ExecuteReader(CommandBehavior.CloseConnection);
return sqlread;
}
//执行sql语句
public void getsqlcom(string SQLstr)
{
getcon();
SqlCommand SQLcom = new SqlCommand(SQLstr com);
SQLcom.ExecuteNonQuery();
SQLcom.Dispose();
con_close();
}
//combox 的数据列绑定
public void cbxBind(string M_str_sqlstr string M_str_table string M_str_tbMember ComboBox cbox)
{
DataSet myds = getDataSet(M_str_sqlstr M_str_table);
cbox.DataSource = myds.Tables[M_str_table];
cbox.DisplayMember = M_str_tbMember;//要显示的列
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 187 2019-06-02 23:17 Content\App.config
文件 15360 2019-06-03 22:46 Content\bin\Debug\Content.exe
文件 187 2019-06-02 23:17 Content\bin\Debug\Content.exe.config
文件 36352 2019-06-03 22:46 Content\bin\Debug\Content.pdb
文件 22984 2019-06-03 22:48 Content\bin\Debug\Content.vshost.exe
文件 187 2019-06-02 23:17 Content\bin\Debug\Content.vshost.exe.config
文件 490 2018-04-12 07:35 Content\bin\Debug\Content.vshost.exe.manifest
文件 4137 2019-06-03 22:18 Content\Content.csproj
文件 2465 2019-06-03 18:54 Content\DataClass.cs
文件 2210 2019-06-03 22:27 Content\Form1.cs
文件 11466 2019-06-03 22:18 Content\Form1.Designer.cs
文件 5817 2019-06-03 22:18 Content\Form1.resx
文件 716 2019-06-03 22:40 Content\Form2.cs
文件 2403 2019-06-03 22:18 Content\Form2.Designer.cs
文件 5817 2019-06-03 22:18 Content\Form2.resx
文件 567 2019-06-03 22:48 Content\obj\Debug\Content.csproj.FileListAbsolute.txt
文件 1033 2019-06-03 22:18 Content\obj\Debug\Content.csproj.GenerateResource.Cache
文件 2209 2019-06-03 12:53 Content\obj\Debug\Content.csprojResolveAssemblyReference.cache
文件 15360 2019-06-03 22:46 Content\obj\Debug\Content.exe
文件 180 2019-06-03 22:18 Content\obj\Debug\Content.Form1.resources
文件 180 2019-06-03 22:18 Content\obj\Debug\Content.Form2.resources
文件 36352 2019-06-03 22:46 Content\obj\Debug\Content.pdb
文件 180 2019-06-03 22:18 Content\obj\Debug\Content.Properties.Resources.resources
文件 863 2019-06-02 23:17 Content\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6891 2019-06-03 22:14 Content\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 0 2019-06-02 23:17 Content\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2019-06-02 23:17 Content\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2019-06-02 23:17 Content\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
文件 519 2019-06-02 23:17 Content\Program.cs
文件 1334 2019-06-02 23:17 Content\Properties\AssemblyInfo.cs
............此处省略14个文件信息
- 上一篇:基于C#的Aforge类调用简单_源码
- 下一篇:C#库存管理系统
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论