Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates in progress |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
d55e8be2bc2288cd1378bb9905af568a |
User & Date: | rmsimpson 2006-01-30 23:22:47.000 |
Context
2006-01-31
| ||
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 | |
23:21 | Minor fixes check-in: b11a6b9a96 user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Designer/SQLite.Designer.csproj.
︙ | ︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>..\bin\Designer\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <NoWarn>1701;1702;1699</NoWarn> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>none</DebugType> <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> | > | < > > > > > > > > > > > > > > > > > > > | 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 | <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>..\bin\Designer\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <NoWarn>1701;1702;1699</NoWarn> <FileAlignment>512</FileAlignment> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>none</DebugType> <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" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <Compile Include="SQLiteConnectionUIControl.cs"> <SubType>Form</SubType> </Compile> <Compile Include="SQLiteConnectionUIControl.Designer.cs"> <DependentUpon>SQLiteConnectionUIControl.cs</DependentUpon> </Compile> <Compile Include="SQLiteDataConnectionSupport.cs" /> <Compile Include="SQLiteDataObjectIdentifierResolver.cs" /> <Compile Include="SQLiteDataObjectSupport.cs" /> <Compile Include="SQLiteDataSourceInformation.cs" /> <Compile Include="AssemblyInfo.cs" /> <Compile Include="SQLiteDataViewSupport.cs" /> <Compile Include="SR.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>SR.resx</DependentUpon> </Compile> </ItemGroup> <ItemGroup> <EmbeddedResource Include="SQLiteDataViewSupport.xml" /> <EmbeddedResource Include="SR.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>SR.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> <ItemGroup> <EmbeddedResource Include="SQLiteConnectionUIControl.resx"> <SubType>Designer</SubType> <DependentUpon>SQLiteConnectionUIControl.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="SQLiteDataObjectSupport.xml" /> </ItemGroup> <ItemGroup> <Folder Include="Properties\" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> </Project> |
Added SQLite.Designer/SQLiteConnectionUIControl.Designer.cs.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | namespace SQLite.Designer { partial class SQLiteConnectionUIControl { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Windows.Forms.Label labelPassword; System.Windows.Forms.GroupBox securityGroup; System.Windows.Forms.Label labelConfirm; System.Windows.Forms.GroupBox encodingGroup; System.Windows.Forms.GroupBox dateTimeGroup; System.Windows.Forms.GroupBox databaseGroup; System.Windows.Forms.Label cacheSizeLabel; System.Windows.Forms.Label pageSizeLabel; System.Windows.Forms.GroupBox syncGroup; this.confirmTextBox = new System.Windows.Forms.TextBox(); this.passwordTextBox = new System.Windows.Forms.TextBox(); this.utf16RadioButton = new System.Windows.Forms.RadioButton(); this.utf8RadioButton = new System.Windows.Forms.RadioButton(); this.ticksRadioButton = new System.Windows.Forms.RadioButton(); this.iso8601RadioButton = new System.Windows.Forms.RadioButton(); this.textBox1 = new System.Windows.Forms.TextBox(); this.pageSizeTextBox = new System.Windows.Forms.TextBox(); this.fileTextBox = new System.Windows.Forms.TextBox(); this.browseButton = new System.Windows.Forms.Button(); this.newDatabase = new System.Windows.Forms.Button(); this.offRadioButton = new System.Windows.Forms.RadioButton(); this.normalRadioButton = new System.Windows.Forms.RadioButton(); this.fullRadioButton = new System.Windows.Forms.RadioButton(); this.connectButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); labelPassword = new System.Windows.Forms.Label(); securityGroup = new System.Windows.Forms.GroupBox(); labelConfirm = new System.Windows.Forms.Label(); encodingGroup = new System.Windows.Forms.GroupBox(); dateTimeGroup = new System.Windows.Forms.GroupBox(); databaseGroup = new System.Windows.Forms.GroupBox(); cacheSizeLabel = new System.Windows.Forms.Label(); pageSizeLabel = new System.Windows.Forms.Label(); syncGroup = new System.Windows.Forms.GroupBox(); securityGroup.SuspendLayout(); encodingGroup.SuspendLayout(); dateTimeGroup.SuspendLayout(); databaseGroup.SuspendLayout(); syncGroup.SuspendLayout(); this.SuspendLayout(); // // labelPassword // labelPassword.AutoSize = true; labelPassword.Location = new System.Drawing.Point(6, 23); labelPassword.Name = "labelPassword"; labelPassword.Size = new System.Drawing.Size(53, 13); labelPassword.TabIndex = 0; labelPassword.Text = "Password"; // // securityGroup // securityGroup.Controls.Add(this.confirmTextBox); securityGroup.Controls.Add(labelConfirm); securityGroup.Controls.Add(this.passwordTextBox); securityGroup.Controls.Add(labelPassword); securityGroup.Location = new System.Drawing.Point(12, 295); securityGroup.Name = "securityGroup"; securityGroup.Size = new System.Drawing.Size(306, 80); securityGroup.TabIndex = 10; securityGroup.TabStop = false; securityGroup.Text = "Encryption"; // // confirmTextBox // this.confirmTextBox.Location = new System.Drawing.Point(65, 47); this.confirmTextBox.Name = "confirmTextBox"; this.confirmTextBox.Size = new System.Drawing.Size(235, 21); this.confirmTextBox.TabIndex = 3; this.confirmTextBox.UseSystemPasswordChar = true; // // labelConfirm // labelConfirm.AutoSize = true; labelConfirm.Location = new System.Drawing.Point(15, 50); labelConfirm.Name = "labelConfirm"; labelConfirm.Size = new System.Drawing.Size(44, 13); labelConfirm.TabIndex = 2; labelConfirm.Text = "Confirm"; // // passwordTextBox // this.passwordTextBox.Location = new System.Drawing.Point(65, 20); this.passwordTextBox.Name = "passwordTextBox"; this.passwordTextBox.Size = new System.Drawing.Size(235, 21); this.passwordTextBox.TabIndex = 1; this.passwordTextBox.UseSystemPasswordChar = true; // // 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(81, 98); encodingGroup.TabIndex = 7; encodingGroup.TabStop = false; encodingGroup.Text = "Encoding"; // // utf16RadioButton // this.utf16RadioButton.AutoSize = true; this.utf16RadioButton.Location = new System.Drawing.Point(6, 44); this.utf16RadioButton.Name = "utf16RadioButton"; this.utf16RadioButton.Size = new System.Drawing.Size(60, 17); this.utf16RadioButton.TabIndex = 1; this.utf16RadioButton.TabStop = true; this.utf16RadioButton.Text = "UTF-16"; this.utf16RadioButton.UseVisualStyleBackColor = true; // // utf8RadioButton // this.utf8RadioButton.AutoSize = true; this.utf8RadioButton.Checked = true; this.utf8RadioButton.Location = new System.Drawing.Point(7, 21); this.utf8RadioButton.Name = "utf8RadioButton"; this.utf8RadioButton.Size = new System.Drawing.Size(54, 17); this.utf8RadioButton.TabIndex = 0; this.utf8RadioButton.TabStop = true; 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(99, 191); dateTimeGroup.Name = "dateTimeGroup"; dateTimeGroup.Size = new System.Drawing.Size(107, 98); dateTimeGroup.TabIndex = 8; dateTimeGroup.TabStop = false; dateTimeGroup.Text = "Date/Time Format"; // // ticksRadioButton // this.ticksRadioButton.AutoSize = true; this.ticksRadioButton.Location = new System.Drawing.Point(6, 44); this.ticksRadioButton.Name = "ticksRadioButton"; this.ticksRadioButton.Size = new System.Drawing.Size(48, 17); this.ticksRadioButton.TabIndex = 1; this.ticksRadioButton.TabStop = true; this.ticksRadioButton.Text = "Ticks"; this.ticksRadioButton.UseVisualStyleBackColor = true; // // iso8601RadioButton // this.iso8601RadioButton.AutoSize = true; this.iso8601RadioButton.Checked = true; this.iso8601RadioButton.Location = new System.Drawing.Point(7, 21); this.iso8601RadioButton.Name = "iso8601RadioButton"; this.iso8601RadioButton.Size = new System.Drawing.Size(71, 17); this.iso8601RadioButton.TabIndex = 0; this.iso8601RadioButton.TabStop = true; this.iso8601RadioButton.Text = "ISO-8601"; this.iso8601RadioButton.UseVisualStyleBackColor = true; // // databaseGroup // databaseGroup.Controls.Add(cacheSizeLabel); databaseGroup.Controls.Add(this.textBox1); databaseGroup.Controls.Add(pageSizeLabel); databaseGroup.Controls.Add(this.pageSizeTextBox); databaseGroup.Controls.Add(this.fileTextBox); databaseGroup.Controls.Add(this.browseButton); databaseGroup.Controls.Add(this.newDatabase); databaseGroup.Location = new System.Drawing.Point(12, 12); databaseGroup.Name = "databaseGroup"; databaseGroup.Size = new System.Drawing.Size(306, 150); databaseGroup.TabIndex = 8; databaseGroup.TabStop = false; databaseGroup.Text = "Database"; // // cacheSizeLabel // cacheSizeLabel.AutoSize = true; cacheSizeLabel.Location = new System.Drawing.Point(7, 116); cacheSizeLabel.Name = "cacheSizeLabel"; cacheSizeLabel.Size = new System.Drawing.Size(59, 13); cacheSizeLabel.TabIndex = 5; cacheSizeLabel.Text = "Cache Size"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(72, 113); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(100, 21); this.textBox1.TabIndex = 6; this.textBox1.Text = "2000"; // // pageSizeLabel // pageSizeLabel.AutoSize = true; pageSizeLabel.Location = new System.Drawing.Point(13, 89); pageSizeLabel.Name = "pageSizeLabel"; pageSizeLabel.Size = new System.Drawing.Size(53, 13); pageSizeLabel.TabIndex = 3; pageSizeLabel.Text = "Page Size"; // // pageSizeTextBox // this.pageSizeTextBox.Location = new System.Drawing.Point(72, 86); this.pageSizeTextBox.Name = "pageSizeTextBox"; this.pageSizeTextBox.Size = new System.Drawing.Size(100, 21); this.pageSizeTextBox.TabIndex = 4; this.pageSizeTextBox.Text = "1024"; // // fileTextBox // this.fileTextBox.Location = new System.Drawing.Point(6, 20); this.fileTextBox.Name = "fileTextBox"; this.fileTextBox.Size = new System.Drawing.Size(294, 21); this.fileTextBox.TabIndex = 0; // // browseButton // 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); syncGroup.Name = "syncGroup"; syncGroup.Size = new System.Drawing.Size(105, 98); syncGroup.TabIndex = 9; syncGroup.TabStop = false; syncGroup.Text = "Synchronization"; // // offRadioButton // this.offRadioButton.AutoSize = true; this.offRadioButton.Location = new System.Drawing.Point(6, 66); this.offRadioButton.Name = "offRadioButton"; this.offRadioButton.Size = new System.Drawing.Size(41, 17); this.offRadioButton.TabIndex = 2; this.offRadioButton.Text = "Off"; this.offRadioButton.UseVisualStyleBackColor = true; // // normalRadioButton // this.normalRadioButton.AutoSize = true; this.normalRadioButton.Checked = true; this.normalRadioButton.Location = new System.Drawing.Point(6, 43); this.normalRadioButton.Name = "normalRadioButton"; this.normalRadioButton.Size = new System.Drawing.Size(58, 17); this.normalRadioButton.TabIndex = 1; this.normalRadioButton.TabStop = true; this.normalRadioButton.Text = "Normal"; this.normalRadioButton.UseVisualStyleBackColor = true; // // fullRadioButton // this.fullRadioButton.AutoSize = true; this.fullRadioButton.Location = new System.Drawing.Point(6, 20); this.fullRadioButton.Name = "fullRadioButton"; this.fullRadioButton.Size = new System.Drawing.Size(41, 17); this.fullRadioButton.TabIndex = 0; this.fullRadioButton.Text = "Full"; this.fullRadioButton.UseVisualStyleBackColor = true; // // connectButton // this.connectButton.Location = new System.Drawing.Point(162, 388); this.connectButton.Name = "connectButton"; this.connectButton.Size = new System.Drawing.Size(75, 23); this.connectButton.TabIndex = 11; this.connectButton.Text = "&Connect"; this.connectButton.UseVisualStyleBackColor = true; // // cancelButton // this.cancelButton.Location = new System.Drawing.Point(243, 388); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 12; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // SQLiteConnectionUIControl // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(330, 423); this.Controls.Add(this.cancelButton); this.Controls.Add(this.connectButton); this.Controls.Add(syncGroup); this.Controls.Add(databaseGroup); this.Controls.Add(dateTimeGroup); this.Controls.Add(encodingGroup); this.Controls.Add(securityGroup); this.Font = new System.Drawing.Font("MS Shell Dlg 2", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.HelpButton = true; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SQLiteConnectionUIControl"; this.ShowIcon = false; this.Text = "SQLite Connection Properties"; securityGroup.ResumeLayout(false); securityGroup.PerformLayout(); encodingGroup.ResumeLayout(false); encodingGroup.PerformLayout(); dateTimeGroup.ResumeLayout(false); dateTimeGroup.PerformLayout(); databaseGroup.ResumeLayout(false); databaseGroup.PerformLayout(); syncGroup.ResumeLayout(false); syncGroup.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TextBox fileTextBox; private System.Windows.Forms.Button browseButton; private System.Windows.Forms.Button newDatabase; private System.Windows.Forms.TextBox confirmTextBox; private System.Windows.Forms.TextBox passwordTextBox; private System.Windows.Forms.RadioButton utf16RadioButton; private System.Windows.Forms.RadioButton utf8RadioButton; private System.Windows.Forms.RadioButton ticksRadioButton; private System.Windows.Forms.RadioButton iso8601RadioButton; private System.Windows.Forms.TextBox pageSizeTextBox; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.RadioButton offRadioButton; private System.Windows.Forms.RadioButton normalRadioButton; private System.Windows.Forms.RadioButton fullRadioButton; private System.Windows.Forms.Button connectButton; private System.Windows.Forms.Button cancelButton; } } |
Added SQLite.Designer/SQLiteConnectionUIControl.cs.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace SQLite.Designer { public partial class SQLiteConnectionUIControl : Form { public SQLiteConnectionUIControl() { InitializeComponent(); } } } |
Added SQLite.Designer/SQLiteConnectionUIControl.resx.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <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> <metadata name="dateTimeGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="databaseGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="cacheSizeLabel.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="pageSizeLabel.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> <metadata name="syncGroup.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </metadata> </root> |
Added SQLite.Designer/SQLiteDataConnectionSupport.cs.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | /******************************************************** * 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.OLE.Interop; using Microsoft.VisualStudio.Data.AdoDotNet; internal class SQLiteDataConnectionSupport : AdoDotNetConnectionSupport { public SQLiteDataConnectionSupport() : base("System.Data.SQLite") { } protected override DataSourceInformation CreateDataSourceInformation() { return base.CreateDataSourceInformation(); } public override int CompareVersions(string versionA, string versionB) { return base.CompareVersions(versionA, versionB); } protected override object GetServiceImpl(Type serviceType) { if (serviceType == typeof(DataViewSupport)) return new SQLiteDataViewSupport(); if (serviceType == typeof(DataObjectSupport)) return new SQLiteDataObjectSupport(); return base.GetServiceImpl(serviceType); } public override void Initialize(object providerObj) { base.Initialize(providerObj); } public override object ProviderObject { get { return base.ProviderObject; } } } } |
Added SQLite.Designer/SQLiteDataObjectSupport.cs.
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /******************************************************** * 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.OLE.Interop; using Microsoft.VisualStudio.Data.AdoDotNet; internal class SQLiteDataObjectSupport : DataObjectSupport { public SQLiteDataObjectSupport() : base("SQLite.Designer.SQLiteDataObjectSupport", typeof(SQLiteDataObjectSupport).Assembly) { } } } |
Added SQLite.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 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 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 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 | <?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> <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"> </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="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> <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> <!-- 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> <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="index_name"> <Concepts> <Concept name="Identifier3"/> </Concepts> </Part> </Identifier> <Properties> <Property name="Name" type="System.String" itemName="index_name"/> <Property name="IsUnique" type="System.Boolean" itemName="UNIQUE"/> <Property name="IsPrimary" type="System.Boolean" itemName="PRIMARY_KEY"> <Concepts> <Concept name="IsPrimary"/> </Concepts> </Property> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="Indexes"/> </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_Qualifier --> <Parameter value="4656BAEA-F397-11ce-BFE1-00AA0057B34E"> <Parameter value="{0}"/> </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="Index"/> </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> <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="Index" itemName="index_name"> <Concepts> <Concept name="Identifier3"/> </Concepts> </Part> <Part name="Name" itemName="column_name"> <Concepts> <Concept name="Identifier4"/> </Concepts> </Part> </Identifier> <Properties> <Property name="Name" type="System.String" itemName="column_name"/> <Property name="Ordinal" type="System.Byte" itemName="ordinal_position"> <Concepts> <Concept name="Ordinal"> <Conversion> <ChangeType type="System.Int32"/> </Conversion> </Concept> </Concepts> </Property> </Properties> <Actions> <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator"> <Parameter value="IndexColumns"/> </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_Qualifier --> <Parameter value="4656BAEA-F397-11ce-BFE1-00AA0057B34E"> <Parameter value="{0}"/> </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="Index"/> <Parameter/> <Parameter/> <Parameter> <Parameter> <Parameter value="{4}"/> <Parameter/> <Parameter value="Field"/> </Parameter> </Parameter> </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> <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="constraint_name"> <Concepts> <Concept name="Identifier3"/> </Concepts> </Part> </Identifier> <Properties> <Property name="Name" type="System.String" itemName="constraint_name"/> <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> <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="ForeignKey" itemName="constraint_name"> <Concepts> <Concept name="Identifier3"/> </Concepts> </Part> <Part name="Name" itemName="fkey_from_column"> <Concepts> <Concept name="Identifier4"/> </Concepts> </Part> </Identifier> <Properties> <Property name="Name" type="System.String" itemName="fkey_from_column"/> <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> |
Added SQLite.Designer/SQLiteDataViewSupport.cs.
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /******************************************************** * 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.OLE.Interop; using Microsoft.VisualStudio.Data.AdoDotNet; internal class SQLiteDataViewSupport : DataViewSupport { public SQLiteDataViewSupport() : base("SQLite.Designer.SQLiteDataViewSupport", typeof(SQLiteDataViewSupport).Assembly) { } } } |
Added SQLite.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 81 82 83 | <?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 --> <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> |
Changes to SQLite.Designer/SR.Designer.cs.
1 2 3 | //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. | | < < < < > > | | 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 | //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:2.0.50727.42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace SQLite.Designer { using System; /// <summary> /// A strongly-typed resource class, for looking up localized strings, etc. /// </summary> // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class SR { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal SR() { } /// <summary> /// Returns the cached ResourceManager instance used by this class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SQLite.Designer.SR", typeof(SR).Assembly); resourceMan = temp; } return resourceMan; } } |
︙ | ︙ |
Changes to SQLite.Designer/SR.resx.
︙ | ︙ | |||
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 | mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> | > > > | 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 | mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> |
︙ | ︙ | |||
110 111 112 113 114 115 116 | </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> | | | | | | | | | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="DataProvider_SQLite" xml:space="preserve"> <value>.NET Data Provider for SQLite</value> </data> <data name="DataProvider_SQLite_Description" xml:space="preserve"> <value>Description of the SQLite Data Provider goes here</value> </data> <data name="DataProvider_SQLite_ServiceProvider" xml:space="preserve"> <value>Service Provider string</value> </data> <data name="DataProvider_SQLite_Short" xml:space="preserve"> <value>SQLite Database File</value> </data> </root> |