(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Data.SqlXml / System.Data.SqlXml / XmlBulkLoad.cs
blob20bb2d585b1f8264da43e2bf8f902d9c68ecd5ef
1 //
2 // System.Data.SqlXml.XmlBulkLoad
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 #if NET_2_0
33 using System.Data;
34 using System.Data.Mapping;
36 namespace System.Data.SqlXml {
37 public class XmlBulkLoad
39 #region Fields
41 bool checkConstraints;
42 int clientBufferSize;
43 string errorLogFile;
44 bool forceTableLock;
45 bool keepIdentity;
46 bool keepNulls;
47 MappingSchema mapping;
48 int serverTransactionSize;
50 #endregion // Fields
52 #region Constructors
54 [MonoTODO]
55 public XmlBulkLoad ()
59 #endregion // Constructors
61 #region Properties
63 public bool CheckConstraints {
64 get { return checkConstraints; }
65 set { checkConstraints = value; }
68 public int ClientBufferSize {
69 get { return clientBufferSize; }
72 public string ErrorLogFile {
73 get { return errorLogFile; }
74 set { errorLogFile = value; }
77 public bool ForceTableLock {
78 get { return forceTableLock; }
79 set { forceTableLock = value; }
82 public bool KeepIdentity {
83 get { return keepIdentity; }
84 set { keepIdentity = value; }
87 public bool KeepNulls {
88 get { return keepNulls; }
89 set { keepNulls = value; }
92 public MappingSchema Mapping {
93 get { return mapping; }
94 set { mapping = value; }
97 public int ServerTransactionSize {
98 get { return serverTransactionSize; }
101 #endregion // Properties
103 #region Methods
105 [MonoTODO]
106 public void Execute (string xmlFileName, IDbConnection connection)
108 throw new NotImplementedException();
111 [MonoTODO]
112 public void SetBufferingSizes (int clientBufferSize, int serverTransactionSize)
114 this.clientBufferSize = clientBufferSize;
115 throw new NotImplementedException();
118 #endregion // Methods
122 #endif // NET_2_0