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:
authorChris Toshok <toshok@novell.com>2006-02-17 22:49:17 +0300
committerChris Toshok <toshok@novell.com>2006-02-17 22:49:17 +0300
commit6a5801f910b4b96bd946934887bfe57942d1efd2 (patch)
treecf274df273eda8bc148312ddc41627e202ff9147 /mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
parent690ab7ea554478e941238e887468151d4f14de27 (diff)
2006-02-17 Chris Toshok <toshok@ximian.com>
* DataAdapter.cs, DataColumnMappingCollection.cs, DataColumnMapping.cs, DataTableMappingCollection.cs, DataTableMapping.cs, DbCommandBuilder.cs, DbConnectionStringBuilder.cs, DbParameterCollection.cs, DbParameter.cs: pretty major attribute work. svn path=/trunk/mcs/; revision=57016
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs14
1 files changed, 8 insertions, 6 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs b/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
index 4a8b3a5bd34..6ca52ca58a0 100644
--- a/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
+++ b/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
@@ -50,48 +50,50 @@ namespace System.Data.Common {
#region Properties
[MonoTODO]
+ [DefaultValue (CatalogLocation.Start)]
public virtual CatalogLocation CatalogLocation {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
+ [DefaultValue (".")]
public virtual string CatalogSeparator {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
+ [DefaultValue (ConflictOption.CompareAllSearchableValues)]
public virtual ConflictOption ConflictOption {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
+ [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+ [Browsable (false)]
public DbDataAdapter DataAdapter {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
+ [DefaultValue ("")]
public virtual string QuotePrefix {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
+ [DefaultValue ("")]
public virtual string QuoteSuffix {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- public SchemaLocation SchemaLocation {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
+ [DefaultValue (".")]
public virtual string SchemaSeparator {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }