如何在.NET平台中开始使用db
我想要从头开始的最简单的示例如何
打开新数据库
用一张表填充它
连接并打开它以进行简单选择查询
我在过去 2 天一直在寻找相关的东西,请帮助我,我只需要基本的
我正在使用 Visual Studio 2008/2010,我知道 mysql 但不知道如何使用 VS for DB
我更喜欢使用 ADO.NET 的示例
i want the most simple example from scratch how to
open new db
populate it with one table
connect and open it to simple select query
I have been looking for sothing relvant in the last 2 days please help me i neede just the basic
I am using visual studio 2008/2010 and i know mysql but dont know how to use VS for DB
I would prefer example using ADO.NET
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
有很多方法可以做到这一点。
看看 ADO.NET、LINQ2SQL、Entity Framework、NHibernate ....
您可以在互联网上找到很多示例。
There are tons of ways to do that.
Have a look at ADO.NET, LINQ2SQL, Entity Framework, NHibernate ....
You can find a lot of examples in internet.
如果您想坚持使用 MySQL 和 C#,此 PDF 将引导您完成整个过程。
http://dev.mysql.com/tech-resources/articles/Beginning_MYSQL_5_with_Visual_Studio.NET_2005.pdf
If you want to stick with MySQL and C#, this PDF will walk you through the process.
http://dev.mysql.com/tech-resources/articles/Beginning_MYSQL_5_with_Visual_Studio.NET_2005.pdf
如果您刚刚开始使用,请查看有关构建 使用 TableAdapter 的数据访问层。这是一个很好的开始,因为除了提供强类型数据之外,它还为您提供了一个很好的拖放类型界面来处理很多事情。数据适配器和连接字符串的所有概念都在那里,只是由它创建的对象管理。
表适配器的好处是它利用 ADO.Net,因此您只需将 DataAdapter 替换为您需要的 SQL、MySQL、SQLite 适配器即可。
一旦掌握了窍门,您就可以通过 LINQ to SQL 教程。
If you're just getting a start on things, check out the ASP.Net tutorial on building a Data Access Layer using TableAdapters. This is a great start because it gives you a nice drag and drop type interface for a lot of things, in addition to giving you strongly typed data. All the concepts of data adapters and connection strings are there, just managed by the object it creates.
The nice thing about the Table Adapters is that it leverages ADO.Net so you simply have to replace your DataAdapter with SQL, MySQL, SQLite adapter you need.
Once you get the hang of that, you can move into integrating your Business layer as well through the LINQ to SQL tutorials.
我也遇到过同样的情况,只是在 Visual Studio 中熟悉 ADO 和 .Net 数据库处理。到目前为止,我发现一些最有用的指南是:
I've been in the same situation, just finding my feet with ADO and .Net database handling in Visual Studio. Up to now I'm finding that some of the most useful guides are:
您好,我个人偏好是使用 pgsql 服务器和 npgsql.dll。链接到
pgsql 就在这里,只是 google npgsql。
这些是我发现的最好记录最快且最容易使用的数据库(这是一个欢迎建议的意见)
hi there my personal preference would be to use pgsql server and npgsql.dll. the link to
pgsql is here and just google npgsql.
these are the best documented fastest and easiest to use databases i have found (that is an opinion open to suggestions)