为我的 C# .NET Winform 应用程序创建单个连接文件
我想创建一个连接文件,使用该文件,我的 winform 应用程序的所有表单都应连接到在线 mysql 数据库并选择、更新和保存。插入数据。
我已将连接文件命名为 CONNECTION.CS,连接字符串为:
OdbcConnection conn = new OdbcConnection("Driver={MySQL ODBC 5.1 Driver};uid=ab ; password=pass;server=www.myweb.com;database=mydb;port=3306");
现在,我如何在 Form1.cs、Form2.cs 中使用它......建立与数据库的连接并开始插入并检索数据?请帮忙。
我需要在所有表单中继承这个Connection.cs吗?请帮忙看一下代码
I want to make a single connection file , using which , all the Forms of my winform application should connect to the online mysql database and select,update & insert data.
I have named the connection file as CONNECTION.CS, connection string is :
OdbcConnection conn = new OdbcConnection("Driver={MySQL ODBC 5.1 Driver};uid=ab ; password=pass;server=www.myweb.com;database=mydb;port=3306");
Now , how do I use it in the Form1.cs,Form2.cs ..........to establish connection to the database and start inserting and retreiving data? Please help.
Do i need to inherit this Connection.cs in all the Forms? Please help with code
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为如果您在 app.config 文件中定义它会更容易
,因此每当您想要获取连接字符串时都可以获取它:
或者您可以使用类作为数据访问层:
然后每当您想通过
此 获取数据时您只需定义一个连接文件即可。
I think it will be easer if you define it in the app.config file
so whenever you want to get a connectionstring you can get it :
or you can use a class as a data access layer :
then whenever you want to getdata just
by this way you just define a single connection file.