Mercurial > pub > bltoolkit
comparison Examples/Nemerle/app.config @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f990fcb411a9 |
---|---|
1 <?xml version="1.0" encoding="utf-8" ?> | |
2 <configuration> | |
3 <appSettings> | |
4 <!-- Default configuration --> | |
5 <add | |
6 key = "ConnectionString" | |
7 value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> | |
8 <!-- SQL Server Development configuration --> | |
9 <add | |
10 key = "ConnectionString.Development" | |
11 value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> | |
12 <!-- SQL Server Production configuration --> | |
13 <add | |
14 key = "ConnectionString.Production" | |
15 value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> | |
16 <!-- SQL Server configuration --> | |
17 <add | |
18 key = "ConnectionString.Sql" | |
19 value = "Server=.;Database=BLToolkitData;Integrated Security=SSPI"/> | |
20 <!-- Oracle configuration --> | |
21 <add | |
22 key = "ConnectionString.Oracle" | |
23 value = "User Id=/;Data Source=BLToolkitData"/> | |
24 <!-- OLEDB configuration --> | |
25 <add | |
26 key = "ConnectionString.OleDb" | |
27 value = "Provider=SQLNCLI.1;Data Source=.;Integrated Security=SSPI;Initial Catalog=BLToolkitData"/> | |
28 <!-- OLEDB Development configuration --> | |
29 <add | |
30 key = "ConnectionString.OleDb.Development" | |
31 value = "Provider=SQLNCLI.1;Data Source=.;Integrated Security=SSPI;Initial Catalog=BLToolkitData"/> | |
32 <!-- OLEDB Production configuration --> | |
33 <add | |
34 key = "ConnectionString.OleDb.Production" | |
35 value = "Provider=SQLNCLI.1;Data Source=.;Integrated Security=SSPI;Initial Catalog=BLToolkitData"/> | |
36 <!-- Additional data providers --> | |
37 <add | |
38 key = "BLToolkit.DataProviders" | |
39 value = "BLToolkit.Data.DataProvider.OracleDataProvider"/> | |
40 | |
41 <!-- Samples | |
42 <add | |
43 key = "BLToolkit.DataProviders" | |
44 value = "BLToolkit.Data.DataProvider.OracleDataProvider;SomeNamespace.SomeType, SomeAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1234567890ABCDEF"/> | |
45 <add | |
46 key = "BLToolkit.DefaultConfiguration" | |
47 value = "Oracle"/> | |
48 --> | |
49 </appSettings> | |
50 </configuration> |