Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Mono.Data.PostgreSqlClient/PgSqlDataAdapter.cs')
-rw-r--r--mcs/class/Mono.Data.PostgreSqlClient/PgSqlDataAdapter.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/class/Mono.Data.PostgreSqlClient/PgSqlDataAdapter.cs b/mcs/class/Mono.Data.PostgreSqlClient/PgSqlDataAdapter.cs
new file mode 100644
index 00000000000..305e024f622
--- /dev/null
+++ b/mcs/class/Mono.Data.PostgreSqlClient/PgSqlDataAdapter.cs
@@ -0,0 +1,25 @@
+//
+// System.Data.SqlClient.SqlDataAdapter.cs
+//
+// Author:
+// Rodrigo Moya (rodrigo@ximian.com)
+//
+// (C) Ximian, Inc
+//
+
+namespace System.Data.SqlClient
+{
+ /// <summary>
+ /// Represents a set of command-related properties that are used to fill the DataSet and update a data source, all this from a SQL database.
+ /// </summary>
+ public class SqlDataAdapter : IDbDataAdapter
+ {
+ SqlCommand DeleteCommand{get; set;}
+
+ SqlCommand InsertCommand{get; set;}
+
+ SqlCommand SelectCommand{get; set;}
+
+ SqlCommand UpdateCommand{get; set;}
+ }
+}