| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- //
- // System.Data.SqlClient.SqlCommandBuilder.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc 2002
- //
- using System;
- using System.Data;
- using System.ComponentModel;
- namespace System.Data.SqlClient {
- /// <summary>
- /// Builder of one command
- /// that will be used in manipulating a table for
- /// a DataSet that is assoicated with a database.
- /// </summary>
- public sealed class SqlCommandBuilder : Component {
-
- [MonoTODO]
- public SqlCommandBuilder() {
- }
- [MonoTODO]
- public SqlCommandBuilder(SqlDataAdapter adapter) {
-
- }
- [MonoTODO]
- public SqlDataAdapter DataAdapter {
- get {
- throw new NotImplementedException ();
- }
-
- set{
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string QuotePrefix {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string QuoteSuffix {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public static void DeriveParameters(SqlCommand command) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlCommand GetDeleteCommand() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlCommand GetInsertCommand() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlCommand GetUpdateCommand() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void RefreshSchema() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void Dispose(bool disposing) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- ~SqlCommandBuilder() {
- // FIXME: create destructor - release resources
- }
- }
- }
|