yl
2023-03-06 88cf209956e5cb2bf5e4048c793c8bb5048808d4
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.SqlClient;
using System.Data;
using System.Collections;
using VueWebApi.Tools;
 
namespace VueWebApi.Tools
{
    public class DataOperator : IDisposable
    {
        private static string connectionString = string.Empty;
 
        private static string connectionName = string.Empty;
 
        private static string key = "fengyi";
 
        private static string iv = "fengyibi";
 
        private SqlConnection _conn = null;
 
        private static string uid;
 
        public static string password;
 
        private SqlCommand _cmd = null;
 
        private SqlDataAdapter _adp = null;
 
        public static string ConnectionName
        {
            get
            {
                return DataOperator.connectionName;
            }
        }
 
        public static string Key
        {
            get
            {
                return DataOperator.key;
            }
            set
            {
                DataOperator.key = value;
            }
        }
 
        public static string IV
        {
            get
            {
                return DataOperator.iv;
            }
            set
            {
                DataOperator.iv = value;
            }
        }
 
        public SqlConnection Connection
        {
            get
            {
                return this._conn;
            }
        }
 
        public string UId
        {
            get
            {
                return DataOperator.uid;
            }
        }
 
        public string Password
        {
            get
            {
                return DataOperator.password;
            }
        }
 
        public DataOperator()
        {
            if (DataOperator.connectionString == "")
            {
                throw new ArgumentNullException("ConnectionString");
            }
        }
 
        public DataOperator(string server, string puid, string pwd, string dbname)
        {
            try
            {
                if (server == null || server.Trim().Length == 0)
                {
                    throw new ArgumentNullException("Type:string pramName:server", "数据库服务器为空!");
                }
                if (DataOperator.uid == null || DataOperator.uid.Trim().Length == 0)
                {
                    throw new ArgumentNullException("Type:string pramName:uid", "数据库用户名为空!");
                }
                if (dbname == null || dbname.Trim().Length == 0)
                {
                    throw new ArgumentNullException("Type:string pramName:dbname", "数据库名为空!");
                }
                DataOperator.uid = puid;
                DataOperator.password = pwd;
                string text = string.Format("server={0};uid={1};pwd={2};database={3};", new object[]
                {
                    server,
                    DataOperator.uid,
                    pwd,
                    dbname
                });
                this._conn = new SqlConnection(text);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 
        public bool getTable(string sqlstr, ref DataTable rdt)
        {
            bool result;
            try
            {
                if (null == rdt)
                {
                    rdt = new DataTable();
                }
                else
                {
                    rdt.Clear();
                }
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                this._adp.Fill(rdt);
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public DataTable getTable(string sqlstr)
        {
            DataTable result;
            try
            {
                DataTable dataTable = new DataTable();
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                this._adp.Fill(dataTable);
                result = dataTable;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public DataTable GetTable(string sqlstr)
        {
            DataTable result;
            try
            {
                DataTable dataTable = new DataTable();
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                this._adp.Fill(dataTable);
                result = dataTable;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public bool getTable(string sqlstr, SqlParameter[] param, ref DataTable rdt)
        {
            bool result;
            try
            {
                if (null == rdt)
                {
                    rdt = new DataTable();
                }
                else
                {
                    rdt.Clear();
                }
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                for (int i = 0; i < param.Length; i++)
                {
                    this._adp.SelectCommand.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                this._adp.Fill(rdt);
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public DataTable GetTable(string sqlstr, SqlParameter[] param)
        {
            DataTable result;
            try
            {
                DataTable dataTable = new DataTable();
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                for (int i = 0; i < param.Length; i++)
                {
                    this._adp.SelectCommand.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                this._adp.Fill(dataTable);
                result = dataTable;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public DataTable getTable(string sqlstr, SqlParameter[] param)
        {
            DataTable result;
            try
            {
                DataTable dataTable = new DataTable();
                if (null == this._conn)
                {
                    
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                for (int i = 0; i < param.Length; i++)
                {
                    this._adp.SelectCommand.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                this._adp.Fill(dataTable);
                result = dataTable;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
 
            return result;
        }
 
        public DataSet getdate(string sqlstr, SqlParameter[] param)
        {
            DataSet result;
            try
            {
                DataSet dset = new DataSet();
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                for (int i = 0; i < param.Length; i++)
                {
                    this._adp.SelectCommand.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                this._adp.Fill(dset);
                result = dset;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public object getObject(string sqlstr)
        {
            object result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL语句不能为空!");
                }
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._cmd = new SqlCommand(sqlstr, this._conn);
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                result = this._cmd.ExecuteScalar();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._cmd)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
            }
            return result;
        }
 
        public object getObject(string sqlstr, SqlParameter[] param)
        {
            object result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL语句不能为空!");
                }
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._cmd = new SqlCommand(sqlstr, this._conn);
                this._cmd.Parameters.Clear();
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                result = this._cmd.ExecuteScalar();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._cmd)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
            }
            return result;
        }
 
        public int getCount(string sqlstr)
        {
            int result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL语句不能为空!");
                }
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand(sqlstr, this._conn);
                object obj = this._cmd.ExecuteScalar();
                if (null == obj)
                {
                    throw new ArgumentNullException("_cmd.ExecuteScalar()", "结果返回空!");
                }
                result = Convert.ToInt32(obj);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._cmd)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
            }
            return result;
        }
 
        public int getCount(string sqlstr, SqlParameter[] param)
        {
            int result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL语句不能为空!");
                }
                if (null == this._conn)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand(sqlstr, this._conn);
                this._cmd.Parameters.Clear();
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                object obj = this._cmd.ExecuteScalar();
                if (null == obj)
                {
                    throw new ArgumentNullException("_cmd.ExecuteScalar()", "结果返回空!");
                }
                result = Convert.ToInt32(obj);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._cmd)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
            }
            return result;
        }
 
        public bool executeSql(string sqlstr)
        {
            bool result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL语句为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._cmd = new SqlCommand(sqlstr, this._conn);
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd.ExecuteNonQuery();
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (this._cmd != null)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
            }
            return result;
        }
 
        public bool executeSql(string sqlstr, SqlParameter[] param)
        {
            bool result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL语句为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._cmd = new SqlCommand(sqlstr, this._conn);
                this._cmd.Parameters.Clear();
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd.ExecuteNonQuery();
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (this._cmd != null)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
            }
            return result;
        }
 
        public bool executeSql(List<string> list)
        {
            string[] array = new string[list.Count];
            for (int i = 0; i < list.Count; i++)
            {
                array[i] = list[i];
            }
            return this.executeSql(array);
        }
 
        public bool executeSql(string[] list)
        {
            SqlTransaction sqlTransaction = null;
            bool result;
            try
            {
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                sqlTransaction = this._conn.BeginTransaction();
                for (int i = 0; i < list.Length; i++)
                {
                    string text = list[i];
                    if (text == null || text.Trim().Length == 0)
                    {
                        throw new ArgumentNullException("sqlstr", "SQL语句为空!");
                    }
                    this._cmd = new SqlCommand(text, this._conn);
                    this._cmd.Transaction = sqlTransaction;
                    this._cmd.ExecuteNonQuery();
                }
                sqlTransaction.Commit();
                result = true;
            }
            catch (Exception ex)
            {
                if (null != sqlTransaction)
                {
                    sqlTransaction.Rollback();
                }
                throw ex;
            }
            finally
            {
                if (this._cmd != null)
                {
                    this._cmd.Dispose();
                    this._cmd = null;
                }
                if (null != sqlTransaction)
                {
                    sqlTransaction.Dispose();
                    sqlTransaction = null;
                }
            }
            return result;
        }
 
        //public bool executeSql(SQLExecEntity entity)
        //{
        //    return this.executeSql(new List<SQLExecEntity>
        //    {
        //        entity
        //    });
        //}
 
        //public bool executeSql(List<SQLExecEntity> list)
        //{
        //    SqlTransaction sqlTransaction = null;
        //    bool result;
        //    try
        //    {
        //        if (this._conn == null)
        //        {
        //            this._conn = new SqlConnection(DataOperator.connectionString);
        //        }
        //        if (ConnectionState.Closed == this._conn.State)
        //        {
        //            this._conn.Open();
        //        }
        //        sqlTransaction = this._conn.BeginTransaction();
        //        foreach (SQLExecEntity current in list)
        //        {
        //            this._cmd = new SqlCommand(current.SqlStr, this._conn);
        //            SqlParameter[] @params = new ParamCollections(current.Param).GetParams();
        //            SqlParameter[] array = @params;
        //            for (int i = 0; i < array.Length; i++)
        //            {
        //                SqlParameter value = array[i];
        //                this._cmd.Parameters.Add(value);
        //            }
        //            this._cmd.Transaction = sqlTransaction;
        //            this._cmd.ExecuteNonQuery();
        //        }
        //        sqlTransaction.Commit();
        //        result = true;
        //    }
        //    catch (Exception ex)
        //    {
        //        if (null != sqlTransaction)
        //        {
        //            sqlTransaction.Rollback();
        //        }
        //        throw ex;
        //    }
        //    finally
        //    {
        //        if (this._cmd != null)
        //        {
        //            this._cmd.Dispose();
        //            this._cmd = null;
        //        }
        //        if (null != sqlTransaction)
        //        {
        //            sqlTransaction = null;
        //        }
        //    }
        //    return result;
        //}
 
        public bool executeProduct(string sqlstr, ref ArrayList outAl)
        {
            DataTable dataTable = new DataTable();
            bool result;
            try
            {
                if (sqlstr == null || sqlstr.Trim().Length == 0)
                {
                    throw new ArgumentNullException("sqlstr", "SQL不能为空!");
                }
                if (null != outAl)
                {
                    outAl.Clear();
                }
                else
                {
                    outAl = new ArrayList();
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                this._adp = new SqlDataAdapter(sqlstr, this._conn);
                this._adp.Fill(dataTable);
                if (null != dataTable)
                {
                    for (int i = 0; i < dataTable.Columns.Count; i++)
                    {
                        if (null != dataTable.Rows[0][i])
                        {
                            outAl.Add(dataTable.Rows[0][i]);
                        }
                    }
                }
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
                if (null != dataTable)
                {
                    dataTable.Clear();
                    dataTable.Dispose();
                    dataTable = null;
                }
            }
            return result;
        }
 
        public ArrayList executeProduct(string produreName, SqlParameter[] param, bool returnDt)
        {
            DataTable dataTable = new DataTable();
            ArrayList result;
            try
            {
                ArrayList arrayList = new ArrayList();
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add(param[i]);
                }
                if (returnDt)
                {
                    SqlDataReader sqlDataReader = this._cmd.ExecuteReader();
                    for (int i = 0; i < sqlDataReader.FieldCount; i++)
                    {
                        dataTable.Columns.Add(sqlDataReader.GetName(i), sqlDataReader.GetFieldType(i));
                    }
                    while (sqlDataReader.Read())
                    {
                        DataRow dataRow = dataTable.NewRow();
                        dataRow.BeginEdit();
                        for (int i = 0; i < sqlDataReader.FieldCount; i++)
                        {
                            dataRow[i] = sqlDataReader.GetValue(i);
                        }
                        dataRow.EndEdit();
                        dataTable.Rows.Add(dataRow);
                    }
                    sqlDataReader.Close();
                    arrayList.Add(dataTable);
                }
                else
                {
                    object value = this._cmd.ExecuteScalar();
                    arrayList.Add(value);
                }
                result = arrayList;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return result;
        }
 
        public DataTable ExecuteProductData(string produreName, SqlParameter[] param)
        {
            DataTable result;
            try
            {
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add(param[i]);
                }
                DataTable dataTable = new DataTable();
                this._adp = new SqlDataAdapter(this._cmd);
                this._adp.Fill(dataTable);
                result = dataTable;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public List<DataTable> ExecuteProductDataList(string produreName, SqlParameter[] param)
        {
            List<DataTable> result =new List<DataTable>();
            try
            {
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add(param[i]);
                }
                DataSet ds = new DataSet();
                this._adp = new SqlDataAdapter(this._cmd);
                this._adp.Fill(ds);
                for (int i = 0; i < ds.Tables.Count; i++)
                {
                    result.Add(ds.Tables[i]);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public DataSet ExecuteProductDataSet(string produreName, SqlParameter[] param)
        {
            DataSet result;
            try
            {
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add(param[i]);
                }
                DataSet dataSet = new DataSet();
                this._adp = new SqlDataAdapter(this._cmd);
                this._adp.Fill(dataSet);
                result = dataSet;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
            }
            return result;
        }
 
        public bool BatchUpdate(DataTable dt, string sqlStr, SqlParameter[] param)
        {
            return this.BatchUpdate(dt, sqlStr, param, 100, false);
        }
 
        public bool BatchUpdate(DataTable dt, string sqlStr, SqlParameter[] param, int batchSize, bool updateAllRows)
        {
            bool result;
            try
            {
                if (updateAllRows)
                {
                    dt.AcceptChanges();
                    foreach (DataRow dataRow in dt.Rows)
                    {
                        dataRow.SetModified();
                    }
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._adp = new SqlDataAdapter();
                this._adp.UpdateCommand = new SqlCommand(sqlStr, this._conn);
                for (int i = 0; i < param.Length; i++)
                {
                    this._adp.UpdateCommand.Parameters.Add(param[i]);
                }
                this._adp.UpdateCommand.UpdatedRowSource = UpdateRowSource.None;
                this._adp.UpdateBatchSize = batchSize;
                this._adp.Update(dt);
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (null != this._adp)
                {
                    this._adp.Dispose();
                    this._adp = null;
                }
                if (null != this._conn)
                {
                    this._conn.Close();
                    this._conn = null;
                }
            }
            return result;
        }
        public Hashtable executeProduct(string produreName, SqlParameter[] param)
        {
            Hashtable result;
            try
            {
                Hashtable hashtable = new Hashtable();
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add((SqlParameter)((ICloneable)param[i]).Clone());
                }
                this._cmd.ExecuteNonQuery();
                for (int i = 0; i < this._cmd.Parameters.Count; i++)
                {
                    if (this._cmd.Parameters[i].Direction == ParameterDirection.Output || this._cmd.Parameters[i].Direction == ParameterDirection.InputOutput)
                    {
                        hashtable.Add(this._cmd.Parameters[i].SourceColumn, this._cmd.Parameters[i].Value);
                    }
                }
                result = hashtable;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return result;
        }
 
        public bool ExecuteProduct(string produreName, SqlParameter[] param)
        {
            bool result;
            try
            {
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add(param[i]);
                }
                this._cmd.ExecuteNonQuery();
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return result;
        }
 
        public string ExecuteDBProduct(string produreName, SqlParameter[] param)
        {
            string result;
            try
            {
                if (produreName == null || produreName.Trim().Length == 0)
                {
                    throw new ArgumentNullException("produreName", "过程名不能为空!");
                }
                if (this._conn == null)
                {
                    this._conn = new SqlConnection(DataOperator.connectionString);
                }
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                this._cmd = new SqlCommand();
                this._cmd.Connection = this._conn;
                this._cmd.CommandType = CommandType.StoredProcedure;
                this._cmd.CommandText = produreName;
                for (int i = 0; i < param.Length; i++)
                {
                    this._cmd.Parameters.Add(param[i]);
                }
                this._cmd.ExecuteNonQuery();
                result = (string)this._cmd.Parameters["@ResultValues"].Value;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return result;
        }
 
        public static void SetConnectionName(string serverName)
        {
            DataOperator.SetConnectionName(serverName, DataOperator.key, DataOperator.iv);
        }
 
        public static void SetConnectionString(string conStr, string key, string iv)
        {
            if (conStr.Trim().Length == 0)
            {
                throw new ArgumentNullException("conStr");
            }
            DataOperator.connectionString = Encrypt.DecryptStr(conStr, key, iv);
        }
 
        public static void SetConnectionString1(string conStr)
        {
            if (conStr.Trim().Length == 0)
            {
                throw new ArgumentNullException("conStr");
            }
            DataOperator.connectionString = conStr;
        }
 
        public static void SetConnectionName(string serverName, string key, string iv)
        {
            if (serverName.Trim().Length == 0)
            {
                throw new ArgumentNullException("serverName");
            }
            DataOperator.connectionName = serverName.Trim();
            DataOperator.connectionString = DataOperator.GetConnectionObjString(DataOperator.connectionName, "connectionString", key, iv);
            DataOperator.uid = DataOperator.GetConnectionObjString(DataOperator.connectionName, "Uid", key, iv);
            DataOperator.password = DataOperator.GetConnectionObjString(DataOperator.connectionName, "Password", key, iv);
        }
 
        private static string GetConnectionObjString(string serverName, string itemName)
        {
            return DataOperator.GetConnectionObjString(serverName, itemName, DataOperator.key, DataOperator.iv);
        }
 
        private static string GetConnectionObjString(string serverName, string itemName, string key, string iv)
        {
            return Encrypt.DecryptStr(Regedit.GetValue(serverName, itemName, false), key, iv);
        }
 
        public bool TestDboState()
        {
            if (this._conn == null)
            {
                this._conn = new SqlConnection(DataOperator.connectionString);
            }
            bool result;
            try
            {
                if (ConnectionState.Closed == this._conn.State)
                {
                    this._conn.Open();
                }
                result = true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return result;
        }
 
        public string checkSql(string sqlstr)
        {
            sqlstr = sqlstr.Replace("--", "__").Replace("'", "‘").Replace(";", ";").Trim();
            return sqlstr;
        }
 
        public void Close()
        {
            if (null != this._conn)
            {
                try
                {
                    if (ConnectionState.Open == this._conn.State)
                    {
                        this._conn.Close();
                    }
                }
                catch (Exception)
                {
                }
                finally
                {
                    this._conn = null;
                }
            }
            if (null != this._adp)
            {
                this._adp.Dispose();
            }
            this._adp = null;
            if (null != this._cmd)
            {
                this._cmd.Dispose();
            }
        }
 
        public void Dispose()
        {
            this.Close();
        }
 
        /// <summary>
        /// 执行多条SQL语句,实现数据库事务。
        /// </summary>
        /// <param name="sql">多条SQL语句</param>
        /// <returns>影响的记录数</returns>
        public int ExecuteSqlTran(List<string> list, params SqlParameter[] param)
        {
            if (list == null || list.Count == 0)
            {
                throw new ArgumentNullException("sqlstr", "SQL语句为空!");
            }
            if (this._conn == null)
            {
                this._conn = new SqlConnection(DataOperator.connectionString);
            }
            for (int i = 0; i < list.Count; i++)
            {
                this._cmd = new SqlCommand(list[i], this._conn);
                this._cmd.Parameters.Clear();
            }
            for (int j = 0; j < param.Length; j++)
            {
                this._cmd.Parameters.Add((SqlParameter)((ICloneable)param[j]).Clone());
            }
            if (ConnectionState.Closed == this._conn.State)
            {
                this._conn.Open();
            }
            //if (conn.State.ToString() == "OPEN")
            //{
            //    conn.Close();
            //}
            //conn.Open();
            //SqlCommand cmd = new SqlCommand();
            this._cmd.Connection = this._conn;
            SqlTransaction tx = this._conn.BeginTransaction();
            this._cmd.Transaction = tx;
            try
            {
                int count = 0;
                for (int n = 0; n < list.Count; n++)
                {
 
                    string strsql = list[n];
 
                    if (strsql.Trim().Length > 1)
                    {
 
                        this._cmd.CommandText = strsql;
                        count += this._cmd.ExecuteNonQuery();
                    }
 
                }
 
                tx.Commit();
                this._conn.Close();
                return count;
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
                tx.Rollback();
                this._conn.Close();
                return -1;
            }
        }
 
 
 
        #region【批量写入sql】
        //public int AddDBSqlBulkCopy(DataTable dt, string targetTable)
        //{
 
 
        //    this._conn.Open();
        //    //声明SqlBulkCopy ,using释放非托管资源
 
        //    using (OracleBulkCopy sqlBC = new OracleBulkCopy(this._conn))
        //    {
 
        //        //一次批量的插入的数据量
 
        //        sqlBC.BatchSize = 1000;
 
        //        //超时之前操作完成所允许的秒数,如果超时则事务不会提交 ,数据将回滚,所有已复制的行都会从目标表中移除
 
        //        sqlBC.BulkCopyTimeout = 60;
 
        //        //設定NotifyAfter 属性,以便在每插入10000 条数据时,呼叫相应事件。 
 
        //        sqlBC.NotifyAfter = 10000;
 
        //        sqlBC.OracleRowsCopied += new OracleRowsCopiedEventHandler(sqlBC_OracleRowsCopied);
 
        //        //设置要批量写入的表
 
        //        sqlBC.DestinationTableName = "dbo.Name";
 
        //        //自定义的datatable和数据库的字段进行对应
 
        //        sqlBC.ColumnMappings.Add("Name", "userName");
 
        //        //  sqlBC.ColumnMappings.Add("Name",1);
 
        //        //批量写入
 
        //        sqlBC.WriteToServer(dt);
 
        //    }
 
        //    this._conn.Dispose();
 
        //}
        #endregion
    }
}