Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add 'single' data type to the mappings returned by GetSchema. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0a225477e08c6170da38e76413c99fdf |
User & Date: | mistachkin 2014-01-28 22:32:39.744 |
Context
2014-01-28
| ||
23:55 | Disable method inlining for the new design-time installer methods. check-in: 9d790b0b0d user: mistachkin tags: trunk | |
22:32 | Add 'single' data type to the mappings returned by GetSchema. check-in: 0a225477e0 user: mistachkin tags: trunk | |
2014-01-24
| ||
18:04 | Skip running the design-time installer tests when running tests on WoW64. check-in: 7ac032e0ad user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/DataTypes.xml.
1 2 3 4 5 6 | <?xml version="1.0" standalone="yes"?> <!-- /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Robert Simpson (robert@blackcastlesoft.com) | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?xml version="1.0" standalone="yes"?> <!-- /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Robert Simpson (robert@blackcastlesoft.com) * * Released to the public domain, use at your own risk! ********************************************************/ --> <DocumentElement> <DataTypes> <TypeName>smallint</TypeName> |
︙ | ︙ | |||
46 47 48 49 50 51 52 53 54 55 56 57 58 59 | </DataTypes> <DataTypes> <TypeName>real</TypeName> <ProviderDbType>15</ProviderDbType> <ColumnSize>7</ColumnSize> <DataType>System.Single</DataType> <CreateFormat>real</CreateFormat> <IsAutoIncrementable>false</IsAutoIncrementable> <IsCaseSensitive>false</IsCaseSensitive> <IsFixedLength>true</IsFixedLength> <IsFixedPrecisionScale>false</IsFixedPrecisionScale> <IsLong>false</IsLong> <IsNullable>true</IsNullable> <IsSearchable>true</IsSearchable> | > > > > > > > > > > > > > > > > > | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | </DataTypes> <DataTypes> <TypeName>real</TypeName> <ProviderDbType>15</ProviderDbType> <ColumnSize>7</ColumnSize> <DataType>System.Single</DataType> <CreateFormat>real</CreateFormat> <IsAutoIncrementable>false</IsAutoIncrementable> <IsCaseSensitive>false</IsCaseSensitive> <IsFixedLength>true</IsFixedLength> <IsFixedPrecisionScale>false</IsFixedPrecisionScale> <IsLong>false</IsLong> <IsNullable>true</IsNullable> <IsSearchable>true</IsSearchable> <IsSearchableWithLike>false</IsSearchableWithLike> <IsUnsigned>false</IsUnsigned> <IsBestMatch>true</IsBestMatch> </DataTypes> <DataTypes> <TypeName>single</TypeName> <ProviderDbType>15</ProviderDbType> <ColumnSize>7</ColumnSize> <DataType>System.Single</DataType> <CreateFormat>single</CreateFormat> <IsAutoIncrementable>false</IsAutoIncrementable> <IsCaseSensitive>false</IsCaseSensitive> <IsFixedLength>true</IsFixedLength> <IsFixedPrecisionScale>false</IsFixedPrecisionScale> <IsLong>false</IsLong> <IsNullable>true</IsNullable> <IsSearchable>true</IsSearchable> |
︙ | ︙ |