Last active
August 29, 2015 14:20
-
-
Save RicardoACS/1414705aa2e429c7890b to your computer and use it in GitHub Desktop.
App.Config SQLite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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