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: |
bc0a931347d4d3ce9c7d750aec3c8852 |
User & Date: | rmsimpson 2006-01-31 05:29:47.000 |
Context
2006-01-31
| ||
19:11 | 1.0.25.0 check-in: c0022ffcbd user: rmsimpson tags: sourceforge | |
05:29 | no message check-in: bc0a931347 user: rmsimpson tags: sourceforge | |
2006-01-30
| ||
23:22 | Updates in progress check-in: d55e8be2bc user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Designer/SQLite.Designer.csproj.
︙ | ︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | <Optimize>true</Optimize> <OutputPath>..\bin\Designer\</OutputPath> <DefineConstants> </DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <NoWarn>1701;1702;1699</NoWarn> </PropertyGroup> <ItemGroup> <Reference Include="Microsoft.VisualStudio.Data, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\VSNET2005\Common7\IDE\Microsoft.VisualStudio.Data.dll</HintPath> </Reference> <Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <SpecificVersion>False</SpecificVersion> </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> | > > | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <Optimize>true</Optimize> <OutputPath>..\bin\Designer\</OutputPath> <DefineConstants> </DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <NoWarn>1701;1702;1699</NoWarn> <FileAlignment>512</FileAlignment> </PropertyGroup> <ItemGroup> <Reference Include="Microsoft.VisualStudio.Data, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\VSNET2005\Common7\IDE\Microsoft.VisualStudio.Data.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <SpecificVersion>False</SpecificVersion> </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> |
︙ | ︙ |
Changes to SQLite.Designer/SQLiteConnectionUIControl.Designer.cs.
︙ | ︙ | |||
118 119 120 121 122 123 124 | // // encodingGroup // encodingGroup.Controls.Add(this.utf16RadioButton); encodingGroup.Controls.Add(this.utf8RadioButton); encodingGroup.Location = new System.Drawing.Point(12, 191); encodingGroup.Name = "encodingGroup"; | | | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | // // encodingGroup // encodingGroup.Controls.Add(this.utf16RadioButton); encodingGroup.Controls.Add(this.utf8RadioButton); encodingGroup.Location = new System.Drawing.Point(12, 191); encodingGroup.Name = "encodingGroup"; encodingGroup.Size = new System.Drawing.Size(75, 98); encodingGroup.TabIndex = 7; encodingGroup.TabStop = false; encodingGroup.Text = "Encoding"; // // utf16RadioButton // this.utf16RadioButton.AutoSize = true; |
︙ | ︙ | |||
150 151 152 153 154 155 156 | this.utf8RadioButton.Text = "UTF-8"; this.utf8RadioButton.UseVisualStyleBackColor = true; // // dateTimeGroup // dateTimeGroup.Controls.Add(this.ticksRadioButton); dateTimeGroup.Controls.Add(this.iso8601RadioButton); | | | | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | this.utf8RadioButton.Text = "UTF-8"; this.utf8RadioButton.UseVisualStyleBackColor = true; // // dateTimeGroup // dateTimeGroup.Controls.Add(this.ticksRadioButton); dateTimeGroup.Controls.Add(this.iso8601RadioButton); dateTimeGroup.Location = new System.Drawing.Point(93, 191); dateTimeGroup.Name = "dateTimeGroup"; dateTimeGroup.Size = new System.Drawing.Size(113, 98); dateTimeGroup.TabIndex = 8; dateTimeGroup.TabStop = false; dateTimeGroup.Text = "Date/Time Format"; // // ticksRadioButton // this.ticksRadioButton.AutoSize = true; |
︙ | ︙ | |||
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | // this.browseButton.Location = new System.Drawing.Point(6, 47); this.browseButton.Name = "browseButton"; this.browseButton.Size = new System.Drawing.Size(75, 23); this.browseButton.TabIndex = 1; this.browseButton.Text = "&Browse ..."; this.browseButton.UseVisualStyleBackColor = true; // // newDatabase // this.newDatabase.Location = new System.Drawing.Point(87, 47); this.newDatabase.Name = "newDatabase"; this.newDatabase.Size = new System.Drawing.Size(75, 23); this.newDatabase.TabIndex = 2; this.newDatabase.Text = "&New ..."; this.newDatabase.UseVisualStyleBackColor = true; // // syncGroup // syncGroup.Controls.Add(this.offRadioButton); syncGroup.Controls.Add(this.normalRadioButton); syncGroup.Controls.Add(this.fullRadioButton); syncGroup.Location = new System.Drawing.Point(213, 191); | > > | 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 | // this.browseButton.Location = new System.Drawing.Point(6, 47); this.browseButton.Name = "browseButton"; this.browseButton.Size = new System.Drawing.Size(75, 23); this.browseButton.TabIndex = 1; this.browseButton.Text = "&Browse ..."; this.browseButton.UseVisualStyleBackColor = true; this.browseButton.Click += new System.EventHandler(this.browseButton_Click); // // newDatabase // this.newDatabase.Location = new System.Drawing.Point(87, 47); this.newDatabase.Name = "newDatabase"; this.newDatabase.Size = new System.Drawing.Size(75, 23); this.newDatabase.TabIndex = 2; this.newDatabase.Text = "&New ..."; this.newDatabase.UseVisualStyleBackColor = true; this.newDatabase.Click += new System.EventHandler(this.newDatabase_Click); // // syncGroup // syncGroup.Controls.Add(this.offRadioButton); syncGroup.Controls.Add(this.normalRadioButton); syncGroup.Controls.Add(this.fullRadioButton); syncGroup.Location = new System.Drawing.Point(213, 191); |
︙ | ︙ |
Changes to SQLite.Designer/SQLiteConnectionUIControl.cs.
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 | namespace SQLite.Designer { public partial class SQLiteConnectionUIControl : Form { public SQLiteConnectionUIControl() { InitializeComponent(); } } } | > > > > > > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | namespace SQLite.Designer { public partial class SQLiteConnectionUIControl : Form { public SQLiteConnectionUIControl() { InitializeComponent(); } private void browseButton_Click(object sender, EventArgs e) { } private void newDatabase_Click(object sender, EventArgs e) { } } } |
Changes to SQLite.Designer/SQLiteConnectionUIControl.resx.
︙ | ︙ | |||
118 119 120 121 122 123 124 125 126 127 128 129 130 131 | <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <metadata name="labelPassword.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="securityGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="labelConfirm.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="encodingGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> | > > > | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <metadata name="labelPassword.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="securityGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="labelConfirm.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="labelConfirm.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="encodingGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> |
︙ | ︙ |
Changes to SQLite.Designer/SQLiteDataConnectionSupport.cs.
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | using System.Text; using Microsoft.VisualStudio.Data; using Microsoft.VisualStudio.OLE.Interop; using Microsoft.VisualStudio.Data.AdoDotNet; internal class SQLiteDataConnectionSupport : AdoDotNetConnectionSupport { public SQLiteDataConnectionSupport() : base("System.Data.SQLite") { } protected override DataSourceInformation CreateDataSourceInformation() { | > > > > | < < < < < < | | | | < | | < > | | > | > | | < | 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 | using System.Text; using Microsoft.VisualStudio.Data; using Microsoft.VisualStudio.OLE.Interop; using Microsoft.VisualStudio.Data.AdoDotNet; internal class SQLiteDataConnectionSupport : AdoDotNetConnectionSupport { private SQLiteDataViewSupport _dataViewSupport; private SQLiteDataObjectSupport _dataObjectSupport; private SQLiteDataObjectIdentifierResolver _dataObjectIdentifierResolver; public SQLiteDataConnectionSupport() : base("System.Data.SQLite") { } protected override DataSourceInformation CreateDataSourceInformation() { return new SQLiteDataSourceInformation(Site as DataConnection); } protected override object GetServiceImpl(Type serviceType) { if (serviceType == typeof(DataViewSupport)) { if (_dataViewSupport == null) _dataViewSupport = new SQLiteDataViewSupport(); return _dataViewSupport; } if (serviceType == typeof(DataObjectSupport)) { if (_dataObjectSupport == null) _dataObjectSupport = new SQLiteDataObjectSupport(); return _dataObjectSupport; } if (serviceType == typeof(DataObjectIdentifierResolver)) { if (_dataObjectIdentifierResolver == null) _dataObjectIdentifierResolver = new SQLiteDataObjectIdentifierResolver(Site); return _dataObjectIdentifierResolver; } return base.GetServiceImpl(serviceType); } } } |
Changes to SQLite.Designer/SQLiteDataObjectIdentifierResolver.cs.
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | internal class SQLiteDataObjectIdentifierResolver : DataObjectIdentifierResolver, IObjectWithSite { private DataConnection _connection; public SQLiteDataObjectIdentifierResolver() { } protected override object[] QuickExpandIdentifier(string typeName, object[] partialIdentifier) { if (typeName == null) { throw new ArgumentNullException("typeName"); } | > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | internal class SQLiteDataObjectIdentifierResolver : DataObjectIdentifierResolver, IObjectWithSite { private DataConnection _connection; public SQLiteDataObjectIdentifierResolver() { } internal SQLiteDataObjectIdentifierResolver(object site) { _connection = site as DataConnection; } protected override object[] QuickExpandIdentifier(string typeName, object[] partialIdentifier) { if (typeName == null) { throw new ArgumentNullException("typeName"); } |
︙ | ︙ |
Changes to bin/Designer/Install.cmd.
1 2 3 4 5 6 | @ECHO OFF SETLOCAL SET MYDIR=%~dp0 SET REGROOT=SOFTWARE\Microsoft\VisualStudio\8.0 | < < < < | | | 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 | @ECHO OFF SETLOCAL SET MYDIR=%~dp0 SET REGROOT=SOFTWARE\Microsoft\VisualStudio\8.0 :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 Installing DDEX Data Provider for SQLite ECHO VS Registry Root: %REGROOT% ECHO SQLite.DLL Path: %MYDIR%..\ IF NOT EXIST "..\System.Data.SQLite.DLL" ECHO The ..\System.Data.SQLite.DLL could not be found.& GOTO End CScript //D "%MYDIR%\Install.vbs" //NoLogo "%REGROOT%" "%MYDIR%" GOTO End :Help ECHO DDEX Data Provider for SQLite Installation ECHO Usage: install [/?] [/regroot ^<regroot^>] :End ECHO Done! ENDLOCAL |
Deleted bin/Designer/SQLiteDataObjectSupport.xml.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted bin/Designer/SQLiteDataViewSupport.xml.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to bin/Designer/SQLiteDesigner.reg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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] | | < < < < < < < < < < < | 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 | 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] @="SQLite.Designer.SQLiteDataConnectionSupport" [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataObjectSupport] [HKEY_LOCAL_MACHINE\%REGROOT%\DataProviders\{0EBAAB6E-CA80-4b4a-8DDF-CBE6BF058C70}\SupportedObjects\DataViewSupport] [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}] |
︙ | ︙ |