~ubuntu-branches/ubuntu/saucy/f-spot/saucy

« back to all changes in this revision

Viewing changes to lib/Hyena/src/Mono.Data.Sqlite/Mono.Data.Sqlite/SQLiteDataAdapter.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2010-05-24 10:35:57 UTC
  • mfrom: (2.4.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20100524103557-1j0i8f66caybci2n
Tags: 0.7.0-1
* New upstream release 0.7.0
 + First release of the unstable 0.7 development series. Massive changes.
 + Reparenting and detaching support (Anton Keks) (Closes: #559745)
 + A new Mallard-based documentation (Harold Schreckengost)
 + No longer embeds flickrnet, uses distribution copy (Iain Lane)
 + Adoption of a large amount of Hyena functionality (Paul Lange, Peter
   Goetz)
 + No longer embeds gnome-keyring-sharp
 + Completely rewritten import, much faster and less memory hungry (Ruben
   Vermeersch) (Closes: #559080, #492658, #341790, #357811, #426017) (LP:
   #412091)
 + No longer use gphoto2-sharp, now uses gvfs which is less crash-pron
   (Ruben Vermeersch)
 + Fix Facebook support (Ruben Vermeersch)
 + Modernized unit tests
 + Revamped build (Mike Gemünde)
 + Much improved duplicate detection (much faster too) (Ruben Vermeersch)
 + Mouse selection in Iconview (Vincent Pomey)
 + Image panning support using middle mouse button (Wojciech Dzierżanowski)
 + Timeline slider now restricted to the size of the window (Iain Churcher)
 + Over 100 bugs closed (http://bit.ly/cyVjnD)
   - No more warnings about schema defaults (Closes: #584215) (LP: #586132)
* debian/control: Clean up build deps to match configure checks
* debian/rules: Don't run dh_makeshilbs as we don't ship any shared
  libraries. There are some private ones though, which get picked up and
  result in a useless postinst/postrm call to ldconfig. Thanks, lintian.
* debian/patches/debian_fix-distclean.patch,
  debian/patches/debian_fix_f-spot.exe.config.patch,
  debian/patches/debian_link-system-flickrnet.patch,
  debian/patches/debian_link-system-gnome-keyring.patch,
  debian/patches/debian_disable-unit-tests,
  debian/patches/git_transition_duration.patch,
  debian/patches/ubuntu_fix_folder_export_hang.patch:
  Clean up obsolete patches which are no longer necessary 
* debian/patches/*: Temporarily disable patches which originated from Ubuntu
  and no longer apply cleanly. We will get these back in a future upstream
  development release.
* debian/patches/*: Refresh to apply cleanly 
* debian/rules: Add new include dir to autoreconf call to pick up f-spot
  macros 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Mono.Data.Sqlite.SQLiteDataAdapter.cs
 
3
//
 
4
// Author(s):
 
5
//   Robert Simpson (robert@blackcastlesoft.com)
 
6
//
 
7
// Adapted and modified for the Mono Project by
 
8
//   Marek Habersack (grendello@gmail.com)
 
9
//
 
10
//
 
11
// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
 
12
// Copyright (C) 2007 Marek Habersack
 
13
//
 
14
// Permission is hereby granted, free of charge, to any person obtaining
 
15
// a copy of this software and associated documentation files (the
 
16
// "Software"), to deal in the Software without restriction, including
 
17
// without limitation the rights to use, copy, modify, merge, publish,
 
18
// distribute, sublicense, and/or sell copies of the Software, and to
 
19
// permit persons to whom the Software is furnished to do so, subject to
 
20
// the following conditions:
 
21
//
 
22
// The above copyright notice and this permission notice shall be
 
23
// included in all copies or substantial portions of the Software.
 
24
//
 
25
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
26
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
27
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
28
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
29
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
30
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
31
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
32
//
 
33
 
 
34
/********************************************************
 
35
 * ADO.NET 2.0 Data Provider for Sqlite Version 3.X
 
36
 * Written by Robert Simpson (robert@blackcastlesoft.com)
 
37
 *
 
38
 * Released to the public domain, use at your own risk!
 
39
 ********************************************************/
 
40
#if NET_2_0
 
41
namespace Mono.Data.Sqlite
 
42
{
 
43
  using System;
 
44
  using System.Data;
 
45
  using System.Data.Common;
 
46
  using System.ComponentModel;
 
47
 
 
48
  /// <summary>
 
49
  /// Sqlite implementation of DbDataAdapter.
 
50
  /// </summary>
 
51
#if !PLATFORM_COMPACTFRAMEWORK
 
52
  [DefaultEvent("RowUpdated")]
 
53
  [ToolboxItem("Sqlite.Designer.SqliteDataAdapterToolboxItem, Sqlite.Designer, Version=1.0.31.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139")]
 
54
  [Designer("Microsoft.VSDesigner.Data.VS.SqlDataAdapterDesigner, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
 
55
#endif
 
56
  public sealed class SqliteDataAdapter : DbDataAdapter
 
57
  {
 
58
    private static object _updatingEventPH = new object();
 
59
    private static object _updatedEventPH = new object();
 
60
 
 
61
    /// <overloads>
 
62
    /// This class is just a shell around the DbDataAdapter.  Nothing from DbDataAdapter is overridden here, just a few constructors are defined.
 
63
    /// </overloads>
 
64
    /// <summary>
 
65
    /// Default constructor.
 
66
    /// </summary>
 
67
    public SqliteDataAdapter()
 
68
    {
 
69
    }
 
70
 
 
71
    /// <summary>
 
72
    /// Constructs a data adapter using the specified select command.
 
73
    /// </summary>
 
74
    /// <param name="cmd">The select command to associate with the adapter.</param>
 
75
    public SqliteDataAdapter(SqliteCommand cmd)
 
76
    {
 
77
      SelectCommand = cmd;
 
78
    }
 
79
 
 
80
    /// <summary>
 
81
    /// Constructs a data adapter with the supplied select command text and associated with the specified connection.
 
82
    /// </summary>
 
83
    /// <param name="commandText">The select command text to associate with the data adapter.</param>
 
84
    /// <param name="connection">The connection to associate with the select command.</param>
 
85
    public SqliteDataAdapter(string commandText, SqliteConnection connection)
 
86
    {
 
87
      SelectCommand = new SqliteCommand(commandText, connection);
 
88
    }
 
89
 
 
90
    /// <summary>
 
91
    /// Constructs a data adapter with the specified select command text, and using the specified database connection string.
 
92
    /// </summary>
 
93
    /// <param name="commandText">The select command text to use to construct a select command.</param>
 
94
    /// <param name="connectionString">A connection string suitable for passing to a new SqliteConnection, which is associated with the select command.</param>
 
95
    public SqliteDataAdapter(string commandText, string connectionString)
 
96
    {
 
97
      SqliteConnection cnn = new SqliteConnection(connectionString);
 
98
      SelectCommand = new SqliteCommand(commandText, cnn);
 
99
    }
 
100
 
 
101
    /// <summary>
 
102
    /// Row updating event handler
 
103
    /// </summary>
 
104
    public event EventHandler<RowUpdatingEventArgs> RowUpdating
 
105
    {
 
106
      add { base.Events.AddHandler(_updatingEventPH, value); }
 
107
      remove { base.Events.RemoveHandler(_updatingEventPH, value); }
 
108
    }
 
109
 
 
110
    /// <summary>
 
111
    /// Row updated event handler
 
112
    /// </summary>
 
113
    public event EventHandler<RowUpdatedEventArgs> RowUpdated
 
114
    {
 
115
      add { base.Events.AddHandler(_updatedEventPH, value); }
 
116
      remove { base.Events.RemoveHandler(_updatedEventPH, value); }
 
117
    }
 
118
 
 
119
    /// <summary>
 
120
    /// Raised by the underlying DbDataAdapter when a row is being updated
 
121
    /// </summary>
 
122
    /// <param name="value">The event's specifics</param>
 
123
    protected override void OnRowUpdating(RowUpdatingEventArgs value)
 
124
    {
 
125
      EventHandler<RowUpdatingEventArgs> handler = base.Events[_updatingEventPH] as EventHandler<RowUpdatingEventArgs>;
 
126
 
 
127
      if (handler != null)
 
128
        handler(this, value);
 
129
    }
 
130
 
 
131
    /// <summary>
 
132
    /// Raised by DbDataAdapter after a row is updated
 
133
    /// </summary>
 
134
    /// <param name="value">The event's specifics</param>
 
135
    protected override void OnRowUpdated(RowUpdatedEventArgs value)
 
136
    {
 
137
      EventHandler<RowUpdatedEventArgs> handler = base.Events[_updatedEventPH] as EventHandler<RowUpdatedEventArgs>;
 
138
 
 
139
      if (handler != null)
 
140
        handler(this, value);
 
141
    }
 
142
 
 
143
    /// <summary>
 
144
    /// Gets/sets the select command for this DataAdapter
 
145
    /// </summary>
 
146
#if !PLATFORM_COMPACTFRAMEWORK
 
147
    [DefaultValue((string)null), Editor("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
 
148
#endif
 
149
    public new SqliteCommand SelectCommand
 
150
    {
 
151
      get { return (SqliteCommand)base.SelectCommand; }
 
152
      set { base.SelectCommand = value; }
 
153
    }
 
154
 
 
155
    /// <summary>
 
156
    /// Gets/sets the insert command for this DataAdapter
 
157
    /// </summary>
 
158
#if !PLATFORM_COMPACTFRAMEWORK
 
159
    [DefaultValue((string)null), Editor("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
 
160
#endif
 
161
    public new SqliteCommand InsertCommand
 
162
    {
 
163
      get { return (SqliteCommand)base.InsertCommand; }
 
164
      set { base.InsertCommand = value; }
 
165
    }
 
166
 
 
167
    /// <summary>
 
168
    /// Gets/sets the update command for this DataAdapter
 
169
    /// </summary>
 
170
#if !PLATFORM_COMPACTFRAMEWORK
 
171
    [DefaultValue((string)null), Editor("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
 
172
#endif
 
173
    public new SqliteCommand UpdateCommand
 
174
    {
 
175
      get { return (SqliteCommand)base.UpdateCommand; }
 
176
      set { base.UpdateCommand = value; }
 
177
    }
 
178
 
 
179
    /// <summary>
 
180
    /// Gets/sets the delete command for this DataAdapter
 
181
    /// </summary>
 
182
#if !PLATFORM_COMPACTFRAMEWORK
 
183
    [DefaultValue((string)null), Editor("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
 
184
#endif
 
185
    public new SqliteCommand DeleteCommand
 
186
    {
 
187
      get { return (SqliteCommand)base.DeleteCommand; }
 
188
      set { base.DeleteCommand = value; }
 
189
    }
 
190
  }
 
191
}
 
192
#endif