[dismiss]
På yggenyk.dk bruger vi cookies til at give dig en god oplevelse og til at indsamle statistik, der kan være med til at forbedre brugeroplevelsen. Hvis du klikker på et link på yggenyk.dk, accepterer du samtidig vores cookiepolitik.
SQLite
Jump to navigation
Jump to search
SQLite official homepage
SQLite Tutorials
Optimizing SQLite
Using SQLite with C# .NET
- System.Data.SQLite
- System.Data.SQLite Readme
- ADO.NET 2.0 Provider for SQLite - Sourceforge
- Connection strings Examples for SQLite
- SQLite for C# – Part 1-8
If you are using .NET Framework 4 and System.Data.SQLite you need to add following to yout applications config file. <source lang="xml">
<configuration> <startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0" /> </startup> </configuration>
</source> otherwise you will get an exception: Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information. Explanation from Microsoft and another explanation can be found here.
<google>ENGELSK</google>