標籤:
C#串連Sqlite 出現:
混合模式程式集是針對“v2.0.50727”版的運行時產生的,在沒有配置其他資訊的情況下,無法在 4.0 運行時中載入該程式集。的解決方案
C#串連sqlite資料庫代碼:
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Data.SQLite; 6 using System.Drawing; 7 using System.Linq; 8 using System.Text; 9 using System.Threading.Tasks;10 using System.Windows.Forms;11 12 namespace T_W_sqlite13 {14 public partial class Form1 : Form15 {16 public static SQLiteConnection sqlConn;17 public static string ConnectionString = "Data Source=E://Test.db3;Pooling=true;FailIfMissing=true";//儲存公用的資料庫連接字串18 19 public static String StartSQLConn()20 {21 sqlConn = new SQLiteConnection(ConnectionString);22 try23 {24 sqlConn.Open();25 }26 catch27 {28 sqlConn = null;29 }30 return "You Test Success!";31 }32 public Form1()33 {34 InitializeComponent();
35 Lable.Text = StartSQLConn();36 37 }38 }39 }
解決方案:
解決方案中找到App.config 檔案
在app.config的configuration節點下添加:
原始為:
1 <?xml version="1.0" encoding="utf-8" ?>2 <configuration>3 <startup> 4 <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />5 </startup>6 </configuration>
修改為:
1 <?xml version="1.0" encoding="utf-8" ?>2 <configuration>3 <startup useLegacyV2RuntimeActivationPolicy="true"> 4 <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />5 </startup>6 </configuration>
便可解決上述問題.
By HRuinger.
C#串連Sqlite 出現:混合模式程式集是針對“v2.0.50727”版的運行時產生的,在沒有配置其他資訊的情況下,無法在 4.0 運行時中載入該程式集。的解決方案