Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.14 Designer support |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
f31df8c30bd6ddf20870b475930659ac |
User & Date: | rmsimpson 2005-08-16 19:09:56 |
Context
2005-08-16
| ||
19:12 | 1.0.14 check-in: 4453746b7a user: rmsimpson tags: sourceforge | |
19:09 | 1.0.14 Designer support check-in: f31df8c30b user: rmsimpson tags: sourceforge | |
2005-08-06
| ||
06:46 | UTF-16 bugfixes and performance enhancements check-in: 0b55ce3401 user: rmsimpson tags: sourceforge | |
Changes
Added bin/Designer/Install.cmd.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 |
@ECHO OFF SETLOCAL SET MYDIR=%~dp0 SET REGROOT=SOFTWARE\Microsoft\VisualStudio\8.0 SET XMLPATH=%MYDIR% :ParseCmdLine IF "%1"=="" GOTO Main IF "%1"=="/regroot" IF NOT "%~2"=="" SET REGROOT=%~2& SHIFT & GOTO NextCmdLine IF "%1"=="/xmlpath" IF NOT "%~2"=="" SET XMLPATH=%~f2& SHIFT & GOTO NextCmdLine IF "%1"=="/?" GOTO Help GOTO Help :NextCmdLine SHIFT GOTO ParseCmdLine :Main ECHO DDEX Data Provider for SQL Server (sample 1) Installation ECHO VS Registry Root: %REGROOT% ECHO XML File Path: %XMLPATH% IF NOT EXIST "%XMLPATH%\SQLiteDataViewSupport.xml" ECHO The data view support XML file was not found.& GOTO End IF NOT EXIST "%XMLPATH%\SQLiteDataObjectSupport.xml" ECHO The data object support XML file was not found.& GOTO End CScript "%MYDIR%\Install.vbs" //NoLogo "%REGROOT%" "%XMLPATH%" GOTO End :Help ECHO DDEX Data Provider for SQL Server (sample 1) Installation ECHO Usage: install [/?] [/regroot ^<regroot^>] [/xmlpath ^<xmlpath^>] :End ECHO Done! ENDLOCAL |
Added bin/Designer/Install.vbs.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 |
Const SQLiteVersion = "1.0.14.0" Main Sub Main() Dim WshShell Set WshShell = WScript.CreateObject("WScript.Shell") Dim fso Set fso = WScript.CreateObject("Scripting.FileSystemObject") Dim myDir myDir = fso.GetParentFolderName(WScript.ScriptFullName) Dim regRoot regRoot = WScript.Arguments(0) If Right(regRoot, 1) = "\" Then regRoot = Left(regRoot, Len(regRoot) - 1) End If Dim xmlPath xmlPath = fso.GetAbsolutePathName(WScript.Arguments(1)) If Right(xmlPath, 1) = "\" Then xmlPath = Left(xmlPath, Len(xmlPath) - 1) End If Dim regFile Dim genRegFile Dim regFileContents Set regFile = fso.OpenTextFile(myDir & "\SQLiteDesigner.reg", 1) Set genRegFile = fso.CreateTextFile(myDir & "\SQLiteDesigner.gen.reg", true) regFileContents = regFile.ReadAll() regFileContents = Replace(regFileContents, "%REGROOT%", regRoot) regFileContents = Replace(regFileContents, "%XMLPATH%", Replace(xmlPath, "\", "\\")) genRegFile.Write(regFileContents) genRegFile.Close() regFile.Close() Dim oExec Set oExec = WshShell.Exec("regedit /s """ & myDir & "\SQLiteDesigner.gen.reg""") Do While oExec.Status = 0 WScript.Sleep(100) Loop fso.DeleteFile(myDir & "\SQLiteDesigner.gen.reg") Dim machineConfig Dim machineConfigFile Dim machineConfigPath machineConfigPath = fso.GetSpecialFolder(WindowsFolder).Path & "\Microsoft.NET\Framework\v2.0.50215\CONFIG" Set machineConfigFile = fso.OpenTextFile(machineConfigPath & "\machine.config") machineConfig = machineConfigFile.ReadAll() machineConfigFile.Close() Dim n Dim x n = InStr(1, machineConfig, "System.Data.SQLite, Version=1", 1) If (n = 0) Then n = InStr(1, machineConfig, "</DbProviderFactories>", 1) If n > 0 Then n = InStrRev(machineConfig, vbCrLf, n, 1) If n > 0 Then machineConfig = Left(machineConfig, n + 1) & " <add name=""SQLite Data Provider"" invariant=""System.Data.SQLite"" description="".Net Framework Data Provider for SQLite"" type=""System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=" & SQLiteVersion & ", Culture=neutral, PublicKeyToken=db937bc2d44ff139"" />" & vbCrLf & Mid(machineConfig, n + 2) End If End If Else n = n + 27 x = InStr(n, machineConfig, ",", 1) If x > 0 Then machineConfig = Left(machineConfig, n) & SQLiteVersion & Mid(machineConfig, x) End If End If Set machineConfigFile = fso.CreateTextFile(machineConfigPath & "\machine.config", true) machineConfigFile.Write(machineConfig) machineConfigFile.Close() End Sub |
Added bin/Designer/Microsoft.Data.ConnectionUI.dll.
cannot compute difference between binary files
Added bin/Designer/Microsoft.VisualStudio.Data.dll.
cannot compute difference between binary files
Added bin/Designer/SQLite.Designer.dll.
cannot compute difference between binary files
Added bin/Designer/SQLiteDataObjectSupport.xml.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
<?xml version="1.0" encoding="utf-8"?> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Copyright (c) Microsoft Corporation, All rights reserved. This code sample is provided "AS IS" without warranty of any kind, it is not recommended for use in a production environment. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <VSDataObjectSupport xmlns="http://tempuri.org/VSDataObjectSupport.xsd"> <Types> <!-- The root type provides a single object with no identifier. Properties on this object are global to a connection. --> <RootType> <Properties> <Property name="Server" type="System.String" itemName="DataSource"/> <Property name="Database" type="System.String" itemName="Database"/> </Properties> <Actions> <!-- This enumerator provides access to properties on the ADO .NET DbConnection object as well as access to each connection string keyword value. --> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetRootObjectEnumerator"/> </Actions> </RootType> <!-- Defines a type that represents a table. --> <Type name="Table" defaultSort="Database, Schema, Name"> <Concepts> <!-- This type maps to the "Table" concept. The restrictions attribute specifies how to map the generic restrictions for the concept (catalog, schema and name) into the specific restrictions for this type. In this case the generic and specific restrictions are identical. The filter indicates that generic enumerations should only get BASE TABLE rows. --> <Concept name="Table" restrictions="{Catalog},null,{Name},TABLE"/> </Concepts> <Identifier> <!-- The concepts here specify which data represents the generic identifier of the table (catalog, schema and name). In this case the generic and specific identifier are identical. --> <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> <!-- Since the set of restrictions available for this type are different from the set of identifier parts, we explicitly specify what data can be restricted on here. --> <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> <!-- The BuildDSRef action allows objects to be dragged from the server explorer to various built in data designers. The parameters to the base DSRefBuilder implementation specify how to build the DSRef tree given parts of an identifier of this object type. --> <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> <!-- Defines a type that represents a table column. --> <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> <Part name="Schema" itemName="table_schema"> <Concepts> <Concept name="Identifier1"/> </Concepts> </Part> <Part name="Table" itemName="table_name"> <Concepts> <Concept name="Identifier2"/> </Concepts> </Part> <Part name="Name" itemName="column_name"> <Concepts> <Concept name="Identifier3"/> </Concepts> </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"> <!-- The Ordinal concept is defined as an Int32 so we must convert it to the expected type. --> </Concept> </Concepts> </Property> <Property name="SystemType" type="System.String" itemName="data_type"> <Concepts> <!-- We can produce reasonable values for all data type concepts given just the system type. The default ADO .NET object concept mapper uses the ADO .NET DataTypes schema collection to map underlying system type to the provider specific type and framework data type. The System.Data.DbType is then inferred from the framework type. --> <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"/> </Concept> <Concept name="FrameworkDataType"> <Conversion mapper="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectConceptMapper"/> </Concept> </Concepts> </Property> <Property name="Length" type="System.Int32" itemName='character_maximum_length'> <Concepts> <Concept name="Length"/> </Concepts> </Property> <Property name="Precision" type="System.Int32" itemName="numeric_precision"> <Concepts> <Concept name="Precision"> </Concept> </Concepts> </Property> <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> <!-- The nullable concept is defined as a boolean value but the enumeration returns a 'YES' or 'NO' string. We can do the conversion inline using an expression. --> <Concept name="Nullable"> </Concept> </Concepts> </Property> <Property name="Default" type="System.String" itemName="column_default"> <Concepts> <Concept name="Default"/> </Concepts> </Property> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="Columns"/> </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> <Parameter> <Parameter value="{3}"/> <Parameter/> <Parameter value="Field"/> <Parameter/> <Parameter> <!-- GUID_DSRefProperty_PreciseType --> <Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9"> <Parameter value="102" type="System.Int32"/> <!-- Table_Column --> </Parameter> </Parameter> </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> <!-- Defines a type that represents a view. --> <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> <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> <Properties> <Property name="Name" type="System.String" itemName="table_name"/> <Property name="Schema" type="System.String" itemName="table_schema"> <Concepts> <Concept name="Schema"/> </Concepts> </Property> <Property name="CheckOption" type="System.Boolean" itemName="check_option"/> <Property name="IsUpdatable" type="System.Boolean" itemName="is_updatable"/> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="Views"/> </Action> <Action name="BuildDSRef" guid="7C030900-E8DD-471b-8F18-D83DA7036144" handler="Microsoft.VisualStudio.Data.DSRefBuilder"> <Parameter> <Parameter value="{2}"/> <Parameter value="{1}"/> <Parameter value="View"/> <Parameter/> <Parameter> <!-- GUID_DSRefProperty_PreciseType --> <Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9"> <Parameter value="301" type="System.Int32"/> <!-- View --> </Parameter> </Parameter> </Parameter> </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"/> </Concepts> </Part> <Part name="Schema" itemName="table_schema"> <Concepts> <Concept name="Identifier1"/> </Concepts> </Part> <Part name="View" itemName="table_name"> <Concepts> <Concept name="Identifier2"/> </Concepts> </Part> <Part name="Name" itemName="column_name"> <Concepts> <Concept name="Identifier3"/> </Concepts> </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"/> </Concept> <Concept name="FrameworkDataType"> <Conversion mapper="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectConceptMapper"/> </Concept> </Concepts> </Property> <Property name="Length" type="System.Int32" itemName='character_maximum_length'> <Concepts> <Concept name="Length"/> </Concepts> </Property> <Property name="Precision" type="System.Int32" itemName="numeric_precision"> <Concepts> <Concept name="Precision"> </Concept> </Concepts> </Property> <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"/> </Concepts> </Property> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="Columns"/> </Action> <Action name="BuildDSRef" guid="7C030900-E8DD-471b-8F18-D83DA7036144" handler="Microsoft.VisualStudio.Data.DSRefBuilder"> <Parameter> <Parameter value="{2}"/> <Parameter value="{1}"/> <Parameter value="View"/> <Parameter/> <Parameter> <!-- GUID_DSRefProperty_PreciseType --> <Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9"> <Parameter value="301" type="System.Int32"/> <!-- View --> </Parameter> </Parameter> <Parameter> <Parameter> <Parameter value="{3}"/> <Parameter/> <Parameter value="Field"/> <Parameter/> <Parameter> <!-- GUID_DSRefProperty_PreciseType --> <Parameter value="39A5A7E7-513F-44a4-B79D-7652CD8962D9"> <Parameter value="302" type="System.Int32"/> <!-- View_Column --> </Parameter> </Parameter> </Parameter> </Parameter> </Parameter> </Action> </Actions> </Type> </Types> </VSDataObjectSupport> |
Added bin/Designer/SQLiteDataViewSupport.xml.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 |
<?xml version="1.0" encoding="utf-8"?> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Copyright (c) Microsoft Corporation, All rights reserved. This code sample is provided "AS IS" without warranty of any kind, it is not recommended for use in a production environment. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <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 --> <StaticConnectionNode> <!-- We can always specify data from the root object --> <InitialDisplayName>{Root.Server}</InitialDisplayName> <CommandBindings> <!-- This command binding hooks up a command that launches the built- in Visual Studio query designer. --> <CommandBinding name="NewQuery" guid="501822E1-B5AF-11d0-B4DC-00A0C91506EF" cmdid="13608" handler="884DD964-5327-461f-9F06-6484DD540F8F"/> </CommandBindings> <Children> <StaticNode nid="Tables"> <DisplayName>User Tables</DisplayName> <CommandBindings> <CommandBinding name="NewQuery" guid="501822E1-B5AF-11d0-B4DC-00A0C91506EF" cmdid="13608" handler="884DD964-5327-461f-9F06-6484DD540F8F"/> </CommandBindings> <Children> <!-- To show a set of objects from the data source we issue a selection, specifying type, restrictions and filter. --> <Selection type="Table" restrictions="null,null,null,TABLE"> <!-- The selection node indicates how to represent each object in the selection. --> <SelectionNode nid="Table"> <DisplayName>{Table.Name}</DisplayName> <Icon name="Table"/> <Children> <Selection type="TableColumn" restrictions="{Table.Database},null,{Table.Name}"> <SelectionNode> <Icon name="Column"/> </SelectionNode> </Selection> </Children> </SelectionNode> </Selection> </Children> </StaticNode> <StaticNode nid="Views"> <DisplayName>User Views</DisplayName> <CommandBindings> <CommandBinding name="NewQuery" guid="501822E1-B5AF-11d0-B4DC-00A0C91506EF" cmdid="13608" handler="884DD964-5327-461f-9F06-6484DD540F8F"/> </CommandBindings> <Children> <Selection type="View"> <SelectionNode nid="View"> <DisplayName>{View.Name}</DisplayName> <Icon name="View"/> <Children> <Selection type="ViewColumn" restrictions="{View.Database},null,{View.Name}"> <SelectionNode> <Icon name="Column"/> </SelectionNode> </Selection> </Children> </SelectionNode> </Selection> </Children> </StaticNode> </Children> </StaticConnectionNode> </DataView> </DataViews> </VSDataViewSupport> |
Added bin/Designer/SQLiteDesigner.reg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
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 |
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}] @=".NET Framework Data Provider for SQLite" "Codebase"="%XMLPATH%\\SQLite.Designer.DLL" "InvariantName"="System.Data.SQLite" "Technology"="{77AB9A9D-78B9-4ba7-91AC-873F5338F1D2}" [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects] [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataConnectionProperties] [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataConnectionSupport] [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataObjectSupport] @="SQLiteDataObjectSupport.xml" "Path"="%XMLPATH%" [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataViewSupport] @="SQLiteDataViewSupport.xml" "Path"="%XMLPATH%" [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataSourceInformation] @="SQLite.Designer.SQLiteDataSourceInformation" [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataObjectIdentifierResolver] @="SQLite.Designer.SQLiteDataObjectIdentifierResolver" [HKEY_LOCAL_MACHINE\%REGROOT%\DataSources\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C71}] @="SQLite Database File" [HKEY_LOCAL_MACHINE\%REGROOT%\DataSources\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C71}\SupportingProviders] [HKEY_LOCAL_MACHINE\%REGROOT%\DataSources\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C71}\SupportingProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}] |
Added bin/Designer/readme.txt.
> > > > |
1 2 3 4 |
Installation Instructions ------------------------- Run the INSTALL.CMD batch file to install the designer into the registry |