Mercurial > pub > bltoolkit
diff Examples/Nemerle/app.config @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Examples/Nemerle/app.config Thu Mar 27 21:46:09 2014 +0400 @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8" ?> +<configuration> + <appSettings> + <!-- Default configuration --> + <add + key = "ConnectionString" + value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> + <!-- SQL Server Development configuration --> + <add + key = "ConnectionString.Development" + value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> + <!-- SQL Server Production configuration --> + <add + key = "ConnectionString.Production" + value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> + <!-- SQL Server configuration --> + <add + key = "ConnectionString.Sql" + value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> + <!-- Oracle configuration --> + <add + key = "ConnectionString.Oracle" + value = "User Id=/;Data Source=BLToolkitData"/> + <!-- OLEDB configuration --> + <add + key = "ConnectionString.OleDb" + value = "Provider=SQLNCLI.1;Data Source=.;Integrated Security=SSPI;Initial Catalog=BLToolkitData"/> + <!-- OLEDB Development configuration --> + <add + key = "ConnectionString.OleDb.Development" + value = "Provider=SQLNCLI.1;Data Source=.;Integrated Security=SSPI;Initial Catalog=BLToolkitData"/> + <!-- OLEDB Production configuration --> + <add + key = "ConnectionString.OleDb.Production" + value = "Provider=SQLNCLI.1;Data Source=.;Integrated Security=SSPI;Initial Catalog=BLToolkitData"/> + <!-- Additional data providers --> + <add + key = "BLToolkit.DataProviders" + value = "BLToolkit.Data.DataProvider.OracleDataProvider"/> + + <!-- Samples + <add + key = "BLToolkit.DataProviders" + value = "BLToolkit.Data.DataProvider.OracleDataProvider;SomeNamespace.SomeType, SomeAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1234567890ABCDEF"/> + <add + key = "BLToolkit.DefaultConfiguration" + value = "Oracle"/> + --> + </appSettings> +</configuration> \ No newline at end of file