-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOracleDataSource.cs
More file actions
423 lines (352 loc) · 12.1 KB
/
OracleDataSource.cs
File metadata and controls
423 lines (352 loc) · 12.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
using System;
using System.Data;
using System.Data.OracleClient;
using System.Collections;
using System.Collections.Generic;
namespace SklDataProvider
{
/// <summary>
/// OracleDataSource 的摘要说明。
/// </summary>
public class OracleDataSource : SklDataSource
{
private OracleConnection _connection;
private OracleTransaction _transaction;
public OracleDataSource(string connectionString)
{
//
// TODO: 在此处添加构造函数逻辑
//
this._connection = new OracleConnection(connectionString);
this._transaction = null;
}
public override System.Data.IDbConnection Connection
{
get
{
return this._connection;
}
}
public override void Open()
{
if (this._connection.State != ConnectionState.Open)
this._connection.Open();
}
public override void Close()
{
if (this._connection != null)
{
if (this._connection.State != ConnectionState.Closed)
this._connection.Close();
this._connection = null;
}
}
public override void BeginTransaction()
{
this._transaction = this._connection.BeginTransaction();
}
public override void CommitTransaction()
{
this._transaction.Commit();
}
public override void RollBackTransaction()
{
this._transaction.Rollback();
}
public override IDbCommand CreateCommand(string commandText, CommandType commandType, IDbDataParameter[] commandParameters)
{
OracleCommand command = new OracleCommand();
this.PrepareCommand(command, this._connection, this._transaction, commandType, commandText, commandParameters);
return command;
}
public override int ExecuteNonQuery(string commandText, CommandType cmdType, IDbDataParameter[] commandParameters)
{
OracleCommand cmd = new OracleCommand();
this.PrepareCommand(cmd, this._connection, this._transaction, cmdType, commandText, commandParameters);
return cmd.ExecuteNonQuery();
}
#region FillDataset
public override void FillDataset(string selectText, DataSet dataSet, string[] tableNames, CommandType commandType, IDbDataParameter[] commandParameters)
{
OracleDataAdapter oda = new OracleDataAdapter(selectText, this._connection);
oda.Fill(dataSet);
}
public override int FillDataset(string selectText, DataSet dataset, int startRow, int maxRow, string tableName, CommandType commandType, IDbDataParameter[] commandParameters)
{
int result = 0;
//OleDbCommand cmd = new OleDbCommand();
//this.PrepareCommand(cmd, this._connection, this._transaction, commandType, selectText, commandParameters);
//using (OleDbDataAdapter adapter = new OleDbDataAdapter(cmd))
//{
// if (string.IsNullOrEmpty(tableName))
// {
// tableName = "Table";
// }
// result = adapter.Fill(dataset, startRow, maxRow, tableName);
// cmd.Parameters.Clear();
//}
throw new Exception("未实现的方法!");
return result;
}
#endregion
public override string ToString()
{
return this.GetType().Name;
}
public override void UpdateDataSet(IDbCommand insertCommand, IDbCommand deleteCommand, IDbCommand updateCommand, DataSet dataSet, string tableName)
{
}
public override void UpdateDataSet(DataSet dataSet, string tableName, string sql)
{
}
public override IDataReader ExecuteReader(string selectCommandText, CommandType commandType, IDbDataParameter[] commandParameters)
{
OracleCommand command = new OracleCommand();
this.PrepareCommand(command, this._connection, this._transaction, commandType, selectCommandText, commandParameters);
return command.ExecuteReader();
}
public override object ExecuteScalar(string commandText, CommandType commandType, IDbDataParameter[] commandParameters)
{
OracleCommand command = new OracleCommand();
this.PrepareCommand(command, this._connection, this._transaction, commandType, commandText, commandParameters);
return command.ExecuteScalar();
}
public override IDbDataParameter[] CreateParameters(string[] paramNames, object[] paramValues)
{
return null;
}
public override DataTable GetSchema(string collectionName)
{
return null;
}
public override DataTable GetOleDbSchemaTable(Guid schema, object[] restrictions)
{
return null;
}
public override void FillSchema(DataTable dataTable, SchemaType schemaType, string TableName)
{
}
/// <summary>
/// 根据表名称获取表字段定义信息
/// add by 4color 2009-2-13
/// </summary>
/// <param name="tableName"></param>
/// <returns></returns>
public override string[] GetTableFieldS(string tableName)
{
string sql = "SELECT COLUMN_NAME FROM USER_TAB_COLUMNS WHERE TABLE_NAME='" + tableName + "'";
DataSet ds = new DataSet();
this.FillDataset(sql, ds);
if (ds != null && ds.Tables.Count > 0)
{
DataTable dt = ds.Tables[0];
string[] fieldS = new string[dt.Rows.Count];
for (int u = 0; u < dt.Rows.Count; u++)
{
fieldS[u] = dt.Rows[u]["COLUMN_NAME"].ToString();
}
return fieldS;
}
return new string[0];
}
#region 数据库批量事物操作
/// <summary>
/// 批量执行Sql语句,带事物操作
/// </summary>
/// <CreateDate>08-09-15</CreateDate>
/// <CreateMan>xw</CreateMan>
/// <param name="arraySql">sql数组</param>
/// <returns></returns>
public override bool BatchExecuteNonQuery(ArrayList arraySql)
{
bool blnResult = true;
try
{
OracleCommand cmd = new OracleCommand();
cmd.Connection = this._connection;
cmd.CommandType = CommandType.Text;
this.Open();
this.BeginTransaction();
foreach (string strSql in arraySql)
{
cmd.CommandText = strSql;
cmd.ExecuteNonQuery();
}
this.CommitTransaction();
this.Close();
}
catch
{
this.RollBackTransaction();
this.Close();
}
return blnResult;
}
/// <summary>
/// 批量执行Sql语句,带事物操作
/// </summary>
/// <CreateDate>08-09-15</CreateDate>
/// <CreateMan>xw</CreateMan>
/// <param name="arraySql">sql数组</param>
/// <returns></returns>
public override bool BatchExecuteNonQuery(string[] arraySql)
{
bool blnResult = true;
try
{
OracleCommand cmd = new OracleCommand();
cmd.Connection = this._connection;
cmd.CommandType = CommandType.Text;
this.Open();
this.BeginTransaction();
foreach (string strSql in arraySql)
{
cmd.CommandText = strSql;
cmd.ExecuteNonQuery();
}
this.CommitTransaction();
this.Close();
}
catch
{
this.RollBackTransaction();
this.Close();
}
return blnResult;
}
#endregion
public override DBType getDBType()
{
return DBType.DB_Oracle;
}
public override ConnectionState State
{
get
{
return this._connection.State;
}
}
#region IDisposable 成员
public override void Dispose(bool disposing)
{
if (this._transaction != null)
{
this._transaction.Dispose();
this._transaction = null;
}
base.Dispose(disposing);
}
#endregion
public override string getDateSqlFormat(DateTime dt)
{
// TODO: 添加 OracleDataSource.getDateSqlFormat 实现
return null;
}
public override string getParameterVarSqlFormat(string varName)
{
// TODO: 添加 OracleDataSource.getParameterVarSqlFormat 实现
return null;
}
public override IDbDataParameter[] CreateNTextParameter(string paramenterContent, string varName)
{
// TODO: 添加 OracleDataSource.CreateNTextParameter 实现
return null;
}
public override IDbDataParameter[] CreateParameterS(string[] paramenterContentS, string[] varNameS, string[] dbTypeS)
{
//System.Data.OracleClient.OracleParameter[] = {};
return null;
}
public override IDbDataParameter[] CreateBlobParameter(byte[] paramenterContent, string varName)
{
return null;
}
public override string getPriKeySqlString(string priKeyName)
{
// TODO: 添加 OracleDataSource.getPriKeySqlString 实现
return null;
}
public override string subStrSqlString()
{
return "";
}
public override string getSubStrSql(string str, int start, int length)
{
return null;
}
public override string getLenStr()
{
return "LENGTH";
}
public override string getLenStrSql(string str)
{
return null;
}
public override string getSysTimeStr()
{
return "SYSDATE";
}
public override string getLikeStr()
{
return "%";
}
public override string getDateAddStr(string param, int addcount, string fieldName)
{
throw new NotImplementedException();
}
public override string getDateStr(string fieldName)
{
return "";
}
public override string getAddMonthsStr(string fieldName, int count)
{
return "ADD_MONTHS(" + fieldName + "," + count + ")";
}
public override string getYearPart(string fieldName)
{
return "TO_CHAR(" + fieldName + ",'YYYY')";
}
public override string getConStrForJet()
{
return null;
}
public override string getJDPart(string fieldName)
{
// TODO: 添加 OracleDataSource.getJDPart 实现
return null;
}
public override string getMPart(string fieldName)
{
// TODO: 添加 OracleDataSource.getMPart 实现
return null;
}
public override string getYQPart(string fieldName)
{
throw new NotImplementedException();
}
public override string getYMPart(string fieldName)
{
throw new NotImplementedException();
}
public override string getParameterTag()
{
return ":";
}
public override string TableType()
{
return "TABLE";
}
public override string ViewType()
{
return "VIEW";
}
public override string ProcedureType()
{
return "PROCEDURE_NAME";
}
public override string GetTopcmdText(string cmdText, int Top)
{
return "select * from (" + cmdText + ") where ROWNUM <=" + Top;
}
}
}