C# Using MySQL_MySQL

WBOY
發布: 2016-06-01 13:35:53
原創
1167 人瀏覽過

bitsCN.com

Configuration of MySQL on C# project.

1. Download the assembly from MySQL binary on installing MySQL connector .NET

2. Copy it to your project’s build out directory, such as ‘$ProjectDIR/Bin/Debug’

3. Add the assembly into your solution on “Add Reference…”

4. Add ‘using MySQL.Data’ namespace in your code.

Common Error

Configuration system failed to initialize

Please check syntax in the app.config.  The format for using connectionstring in app.config should be like below:

<configuration><br>  <connectionstrings><br>    <add name="Northwind"></add>         providerName="System.Data.SqlClient"<br>         connectionString="server=(local);integrated security=SSPI;database=Northwind" /><br>  </connectionstrings><br></configuration>
登入後複製

Unable to find the requested .Net Framework Data Provider.  It may not be installed.

MySql “找不到请求的 .Net Framework 数据提供程序。可能没有安装。”

需要在app.config或者web.config中添加下面的配置项


   
       
   

bitsCN.com
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!