SQLite Provider

Discussion in 'Databases' started by hkelly, May 6, 2011.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Hi all,

    My site uses a small SQLite database. However, in spite of uploading all the appropriate dll's I get the error message "Unable to find the requested .Net Framework Data Provider. It may not be installed." when trying to run.

    Any advice?

    Thanks,
    Heath.
     
  2. Bruce

    Bruce DiscountASP.NET Staff

  3. Thanks for pointing me in the right direction Bruce. I had installed all the dlls in the bin directory but I need to reference the fully qualified assembly name in my web.config as follows:

    <add name="SQLite Data Provider"
    invariant="System.Data.SQLite"
    description=".Net Framework Data Provider for SQLite"
    type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.66.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />

    Everything is now working. Thanks for your help,

    Heath.
     
  4. mjp

    mjp

    Glad you got it working.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page