Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | no message |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
c28e7456916b3468c26cb1f7bfd12016 |
User & Date: | rmsimpson 2005-08-25 23:05:46.000 |
Context
2005-08-26
| ||
03:08 | no message check-in: c2d292b29a user: rmsimpson tags: sourceforge | |
2005-08-25
| ||
23:05 | no message check-in: c28e745691 user: rmsimpson tags: sourceforge | |
18:42 | pre 3.2.5 update check-in: 4d201cb5ab user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Interop/src/expr.c.
︙ | ︙ | |||
11 12 13 14 15 16 17 | ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** ** $Id: expr.c,v 1.12 2005/08/25 23:07:59 rmsimpson Exp $ */ #include "sqliteInt.h" #include <ctype.h> /* ** Return the 'affinity' of the expression pExpr if any. ** |
︙ | ︙ |
Changes to bin/Designer/SQLiteDataObjectSupport.xml.
1 2 | <?xml version="1.0" encoding="utf-8"?> | | < > | | < > > > > < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < | | | 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 44 45 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 77 78 79 80 81 82 83 84 85 86 | <?xml version="1.0" encoding="utf-8"?> <!-- /******************************************************** * 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! ********************************************************/ --> <VSDataObjectSupport xmlns="http://tempuri.org/VSDataObjectSupport.xsd"> <Types> <RootType> <Properties> <Property name="Server" type="System.String" itemName="DataSource"/> <Property name="Database" type="System.String" itemName="Database"/> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetRootObjectEnumerator"/> </Actions> </RootType> <Type name="Table" defaultSort="Database,Schema,Name"> <Concepts> <Concept name="Table" restrictions="{Catalog},null,{Name},TABLE"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> <Part name="Schema" itemName="table_schema"> <Concepts> <Concept name="Identifier1"/> </Concepts> </Part> <Part name="Name" itemName="table_name"> <Concepts> <Concept name="Identifier2"/> </Concepts> </Part> </Identifier> <Restrictions> <Restriction name="Database"/> <Restriction name="Schema"/> <Restriction name="Name"/> <Restriction name="Type"/> </Restrictions> <Properties> <Property name="Name" type="System.String" itemName="table_name"/> <Property name="Schema" type="System.String" itemName="table_schema"/> <Property name="Type" type="System.String" itemName="table_type"/> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="Tables"/> </Action> <Action name="BuildDSRef" guid="7C030900-E8DD-471b-8F18-D83DA7036144" handler="Microsoft.VisualStudio.Data.DSRefBuilder"> <Parameter> <Parameter value="{2}"/> <Parameter value="{1}"/> <Parameter value="Table"/> <Parameter/> <Parameter> <!-- GUID_DSRefProperty_PreciseType --> <Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9"> <Parameter value="101" type="System.Int32"/> <!-- Table --> </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> <Type name="TableColumn" defaultSort="Database,Schema,Table,Ordinal"> <Concepts> <Concept name="TableColumn" restrictions="{Catalog},null,{Table},{Name}"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> |
︙ | ︙ | |||
136 137 138 139 140 141 142 | </Part> </Identifier> <Properties> <Property name="Name" type="System.String" itemName="column_name"/> <Property name="Ordinal" type="System.Int32" itemName="ordinal_position"> <Concepts> <Concept name="Ordinal"> | < < < < < < < < < < < | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | </Part> </Identifier> <Properties> <Property name="Name" type="System.String" itemName="column_name"/> <Property name="Ordinal" type="System.Int32" itemName="ordinal_position"> <Concepts> <Concept name="Ordinal"> </Concept> </Concepts> </Property> <Property name="SystemType" type="System.String" itemName="data_type"> <Concepts> <Concept name="UserDataType"/> <Concept name="NativeDataType"/> <Concept name="ProviderDataType"> <Conversion mapper="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectConceptMapper"/> </Concept> <Concept name="ProviderDbType"> <Conversion mapper="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectConceptMapper"/> |
︙ | ︙ | |||
183 184 185 186 187 188 189 | <Property name="Scale" type="System.Int32" itemName="numeric_scale"> <Concepts> <Concept name="Scale"/> </Concepts> </Property> <Property name="Nullable" type="System.Boolean" itemName="is_nullable"> <Concepts> | < < < < < | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | <Property name="Scale" type="System.Int32" itemName="numeric_scale"> <Concepts> <Concept name="Scale"/> </Concepts> </Property> <Property name="Nullable" type="System.Boolean" itemName="is_nullable"> <Concepts> <Concept name="Nullable"> </Concept> </Concepts> </Property> <Property name="Default" type="System.String" itemName="column_default"> <Concepts> <Concept name="Default"/> |
︙ | ︙ | |||
233 234 235 236 237 238 239 | </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> | < < < | | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> <Type name="View" defaultSort="Database, Schema, Name"> <Concepts> <Concept name="View" restrictions="{Catalog}, null, {Name}"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> |
︙ | ︙ | |||
291 292 293 294 295 296 297 | </Action> </Actions> </Type> <!-- Defines a type that represents a view column. --> | | | 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | </Action> </Actions> </Type> <!-- Defines a type that represents a view column. --> <Type name="ViewColumn" defaultSort="Database,Schema,View,Ordinal"> <Concepts> <Concept name="ViewColumn" restrictions="{Catalog},null,{View},{Name}"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> |
︙ | ︙ | |||
405 406 407 408 409 410 411 | </Parameter> </Action> </Actions> </Type> <!-- Defines a type that represents an index. --> | | < < < < < < | | 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | </Parameter> </Action> </Actions> </Type> <!-- Defines a type that represents an index. --> <Type name="Index" defaultSort="Database,Schema,Table,Name"> <Concepts> <Concept name="TableUniqueKey" restrictions="{Catalog},null,{Table},{Name}" filter="IsUnique = true"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> |
︙ | ︙ | |||
479 480 481 482 483 484 485 | </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> | < < < | | | 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> <Type name="IndexColumn" defaultSort="Database,Schema,Table,Index,Ordinal"> <Concepts> <Concept name="TableUniqueKeyColumn" restrictions="{Catalog},null,{Table},{TableUniqueKey},{Name}"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> |
︙ | ︙ | |||
567 568 569 570 571 572 573 | </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> | < < < | | | 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 | </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> <Type name="ForeignKey" defaultSort="Database,Schema,Table,Name"> <Concepts> <Concept name="TableForeignKey" restrictions="{Catalog},null,{Table},{Name}"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> |
︙ | ︙ | |||
605 606 607 608 609 610 611 | <Property name="ReferencedTableDatabase" type="System.String" itemName="fkey_to_catalog"> <Concepts> <Concept name="ReferencedTableId0"/> </Concepts> </Property> <Property name="ReferencedTableSchema" type="System.String" itemName="fkey_to_schema"> <Concepts> | < < < < < < < < < < | | | 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | <Property name="ReferencedTableDatabase" type="System.String" itemName="fkey_to_catalog"> <Concepts> <Concept name="ReferencedTableId0"/> </Concepts> </Property> <Property name="ReferencedTableSchema" type="System.String" itemName="fkey_to_schema"> <Concepts> <Concept name="ReferencedTableId1"/> </Concepts> </Property> <Property name="ReferencedTableName" type="System.String" itemName="fkey_to_table"> <Concepts> <Concept name="ReferencedTableId2"/> </Concepts> </Property> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="ForeignKeys"/> </Action> </Actions> </Type> <Type name="ForeignKeyColumn" defaultSort="Database,Schema,Table,ForeignKey,Ordinal"> <Concepts> <Concept name="TableForeignKeyColumn" restrictions="{Catalog},null,{Table},{TableForeignKey},{Name}"/> </Concepts> <Identifier> <Part name="Database" itemName="table_catalog"> <Concepts> <Concept name="Identifier0"/> </Concepts> </Part> |
︙ | ︙ | |||
671 672 673 674 675 676 677 | <Property name="Ordinal" type="System.Int32" itemName="fkey_from_ordinal_position"> <Concepts> <Concept name="Ordinal"/> </Concepts> </Property> <Property name="ReferencedColumnName" type="System.String" itemName="fkey_to_column"> <Concepts> | < < < < < | 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 | <Property name="Ordinal" type="System.Int32" itemName="fkey_from_ordinal_position"> <Concepts> <Concept name="Ordinal"/> </Concepts> </Property> <Property name="ReferencedColumnName" type="System.String" itemName="fkey_to_column"> <Concepts> <Concept name="ReferencedTableColumn"/> </Concepts> </Property> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="ForeignKeys"/> </Action> </Actions> </Type> </Types> </VSDataObjectSupport> |
Changes to bin/Designer/SQLiteDataViewSupport.xml.
1 2 | <?xml version="1.0" encoding="utf-8"?> | | < > | | < > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?xml version="1.0" encoding="utf-8"?> <!-- /******************************************************** * 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! ********************************************************/ --> <VSDataViewSupport xmlns="http://tempuri.org/VSDataViewSupport.xsd"> <DataViews> <!-- This sample defines a single data view --> <DataView name="SQLite"> <DisplayName>SQLite</DisplayName> <!-- The connection node is static, i.e. has no underlying object --> |
︙ | ︙ |