Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Designer fixes |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
8c1919d48af60dd363c26499cc22a852 |
User & Date: | rmsimpson 2006-02-07 20:07:04.000 |
Context
2006-02-09
| ||
01:43 | no message check-in: 145ce50eb7 user: rmsimpson tags: sourceforge | |
2006-02-07
| ||
20:07 | Designer fixes check-in: 8c1919d48a user: rmsimpson tags: sourceforge | |
20:06 | SourceColumnNullMapping fix check-in: 52e06f632a user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Designer/SQLiteDataSourceInformation.cs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /******************************************************** * 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! ********************************************************/ namespace SQLite.Designer { using System; using System.Collections.Generic; using System.Text; using Microsoft.VisualStudio.Data; | > | < < < < < | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | /******************************************************** * 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! ********************************************************/ namespace SQLite.Designer { using System; using System.Collections.Generic; using System.Text; using Microsoft.VisualStudio.Data; using Microsoft.VisualStudio.Data.AdoDotNet; internal class SQLiteDataSourceInformation : AdoDotNetDataSourceInformation { public SQLiteDataSourceInformation(DataConnection connection) : base(connection) { Initialize(); } private void Initialize() { AddProperty(DefaultSchema); AddProperty(DefaultCatalog, "main"); AddProperty(SupportsAnsi92Sql, true); AddProperty(SupportsQuotedIdentifierParts, true); AddProperty(IdentifierOpenQuote, "["); AddProperty(IdentifierCloseQuote, "]"); AddProperty(CatalogSeparator, "."); AddProperty(CatalogSupported, true); AddProperty(CatalogSupportedInDml, true); AddProperty(SchemaSupported, false); AddProperty(SchemaSupportedInDml, false); AddProperty(SchemaSeparator, ""); AddProperty(ParameterPrefix, "@"); AddProperty(ParameterPrefixInName, true); AddProperty("DesktopDataSource"); } } } |