Skip to content

Instantly share code, notes, and snippets.

@RicardoACS
Last active August 29, 2015 14:20
Show Gist options
  • Save RicardoACS/1414705aa2e429c7890b to your computer and use it in GitHub Desktop.
Save RicardoACS/1414705aa2e429c7890b to your computer and use it in GitHub Desktop.
App.Config SQLite
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="connection" connectionString="Data Source=|DataDirectory|NombreBD.db;Version=3;New=False;Compress=True;"
providerName="System.Data.SQLite" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
// No copiar
|DataDirectory| esta en la carpeta \bin\debug ;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment