System.Data.Common クラスを使用してカスタム データ プロバイダーを作成し、インターフェース IDBConnection、IDBCommand などを実装しました。プロバイダー名は「MysampleProvider」です。
今、web.config の接続文字列でプロバイダーを指定したいですか? .net データ プロバイダーの代わりに独自のプロバイダー (MysampleProvider) を使用できるようにします。
誰でもこれについて私を案内できますか?例で?
あなたの返事を楽しみにしていますか?
こんにちは、私はあなたの指示に従い、以下のように変更を加えましたが、まだ成功していません.私のソースは以下です.
<DbProviderFactories>
<remove invariant="CustomDataProvider"/>
<add name="Custom Data Provider" invariant="CustomtDataProvider" description=".Net Framework Data Provider" type="CustomDataProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
</DbProviderFactories>
</system.data>
<connectionStrings>
<add name="ConnectionString" connectionString="Driver={MySQL ODBC 5.1 Driver};server=192.168.1.6;uid=root;database=Sample;port=3306;pwd=root79" providerName="CustomDataProvider.DBManager" />
</connectionStrings>