本文介绍了C#.net数据库应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好..
我是c#的新手,我需要在c#.net项目中连接一个小表,所以我不想使用SQL数据库.
任何人都可以给我一个简单的应用程序,该应用程序将Microsoft Access数据库与c#.net一起使用.
这样我就可以从一个小表中存储和检索数据.
请在这方面帮助我...
问候
Sunit parmar
Hi all..
I am new to c#.I need to connect a small table in my c#.net project so i don''t want to use SQL database.
Can any one give me a simple application which uses microsoft Access database with c#.net.
So i can store and retreive data from a small table.
please help me in this regard...
Regards
Sunit parmar
推荐答案
SqlConnection cs1 = new SqlConnection("Data Source=sedc;Initial Catalog=ur databasename;Persist Security Info=True;User ID=ur databaseusername;Password=ur databasepassword");
SqlCommand cmd1 = new SqlCommand();
cs1.Open();
cmd1.CommandText = "sql query";
cmd1.Connection = cs1;
int a = cmd1.ExecuteNonQuery();
cs1.Close();
例如:查询:select * from usermaster
usermaster
是数据库中提供的表.
快乐编码
eg: query: select * from usermaster
usermaster
is a table in your database provided .
happy coding
这篇关于C#.net数据库应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!