How do I set up a connection string for a MySQL database in a C# project without using dialog boxes?

ⅰ亾dé卋堺 提交于 2019-11-30 21:52:04

Use the app.config (or web.config) file to add a entry. Be sure the specify the provider= attribute correctly with the MySQL provider.

There is no support for third-party extensions in Visual C# 2008 Express Edition SP1.

This is mentioned in this blog post by Dan Fernandez.

More information about the difference between Express and Professional editions is available here in the Visual Studio 2008 Product Comparison article.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!