- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章asp.net DataTable相关操作集锦(筛选,取前N条数据,去重复行,获取指定列数据等)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例总结了asp.net DataTable相关操作。分享给大家供大家参考,具体如下:
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
|
#region DataTable筛选,排序返回符合条件行组成的新DataTable或直接用DefaultView按条件返回
/// <summary>
/// DataTable筛选,排序返回符合条件行组成的新DataTable或直接用DefaultView按条件返回
/// eg:SortExprDataTable(dt,"Sex='男'","Time Desc",1)
/// </summary>
/// <param name="dt">传入的DataTable</param>
/// <param name="strExpr">筛选条件</param>
/// <param name="strSort">排序条件</param>
/// <param name="mode">1,直接用DefaultView按条件返回,效率较高;2,DataTable筛选,排序返回符合条件行组成的新DataTable</param>
public
static
DataTable SortDataTable(DataTable dt,
string
strExpr,
string
strSort,
int
mode)
{
switch
(mode)
{
case
1:
//方法一 直接用DefaultView按条件返回
dt.DefaultView.RowFilter = strExpr;
dt.DefaultView.Sort = strSort;
return
dt;
case
2:
//方法二 DataTable筛选,排序返回符合条件行组成的新DataTable
DataTable dt1 =
new
DataTable();
DataRow[] GetRows = dt.Select(strExpr, strSort);
//复制DataTable dt结构不包含数据
dt1 = dt.Clone();
foreach
(DataRow row
in
GetRows)
{
dt1.Rows.Add(row.ItemArray);
}
return
dt1;
default
:
return
dt;
}
}
#endregion
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#region 获取DataTable前几条数据
/// <summary>
/// 获取DataTable前几条数据
/// </summary>
/// <param name="TopItem">前N条数据</param>
/// <param name="oDT">源DataTable</param>
/// <returns></returns>
public
static
DataTable DtSelectTop(
int
TopItem, DataTable oDT)
{
if
(oDT.Rows.Count < TopItem)
return
oDT;
DataTable NewTable = oDT.Clone();
DataRow[] rows = oDT.Select(
"1=1"
);
for
(
int
i = 0; i < TopItem; i++)
{
NewTable.ImportRow((DataRow)rows[i]);
}
return
NewTable;
}
#endregion
|
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
|
#region 获取DataTable中指定列的数据
/// <summary>
/// 获取DataTable中指定列的数据
/// </summary>
/// <param name="dt">数据源</param>
/// <param name="tableName">新的DataTable的名词</param>
/// <param name="strColumns">指定的列名集合</param>
/// <returns>返回新的DataTable</returns>
public
static
DataTable GetTableColumn(DataTable dt,
string
tableName,
params
string
[] strColumns)
{
DataTable dtn =
new
DataTable();
if
(dt ==
null
)
{
throw
new
ArgumentNullException(
"参数dt不能为null"
);
}
try
{
dtn = dt.DefaultView.ToTable(tableName,
true
, strColumns);
}
catch
(Exception e)
{
throw
new
Exception(e.Message);
}
return
dtn;
}
#endregion
|
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
|
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Data;
using
System.Collections;
using
System.Text;
namespace
GuanEasy
{
/// <summary>
/// DataSet助手
/// </summary>
public
class
DataSetHelper
{
private
class
FieldInfo
{
public
string
RelationName;
public
string
FieldName;
public
string
FieldAlias;
public
string
Aggregate;
}
private
DataSet ds;
private
ArrayList m_FieldInfo;
private
string
m_FieldList;
private
ArrayList GroupByFieldInfo;
private
string
GroupByFieldList;
public
DataSet DataSet
{
get
{
return
ds; }
}
#region Construction
public
DataSetHelper()
{
ds =
null
;
}
public
DataSetHelper(
ref
DataSet dataSet)
{
ds = dataSet;
}
#endregion
#region Private Methods
private
bool
ColumnEqual(
object
objectA,
object
objectB)
{
if
( objectA == DBNull.Value && objectB == DBNull.Value )
{
return
true
;
}
if
( objectA == DBNull.Value || objectB == DBNull.Value )
{
return
false
;
}
return
( objectA.Equals( objectB ) );
}
private
bool
RowEqual(DataRow rowA, DataRow rowB, DataColumnCollection columns)
{
bool
result =
true
;
for
(
int
i = 0; i < columns.Count; i++ )
{
result &= ColumnEqual( rowA[ columns[ i ].ColumnName ], rowB[ columns[ i ].ColumnName ] );
}
return
result;
}
private
void
ParseFieldList(
string
fieldList,
bool
allowRelation)
{
if
( m_FieldList == fieldList )
{
return
;
}
m_FieldInfo =
new
ArrayList();
m_FieldList = fieldList;
FieldInfo Field;
string
[] FieldParts;
string
[] Fields = fieldList.Split(
','
);
for
(
int
i = 0; i <= Fields.Length - 1; i++ )
{
Field =
new
FieldInfo();
FieldParts = Fields[ i ].Trim().Split(
' '
);
switch
( FieldParts.Length )
{
case
1:
//to be set at the end of the loop
break
;
case
2:
Field.FieldAlias = FieldParts[ 1 ];
break
;
default
:
return
;
}
FieldParts = FieldParts[ 0 ].Split(
'.'
);
switch
( FieldParts.Length )
{
case
1:
Field.FieldName = FieldParts[ 0 ];
break
;
case
2:
if
( allowRelation ==
false
)
{
return
;
}
Field.RelationName = FieldParts[ 0 ].Trim();
Field.FieldName = FieldParts[ 1 ].Trim();
break
;
default
:
return
;
}
if
( Field.FieldAlias ==
null
)
{
Field.FieldAlias = Field.FieldName;
}
m_FieldInfo.Add( Field );
}
}
private
DataTable CreateTable(
string
tableName, DataTable sourceTable,
string
fieldList)
{
DataTable dt;
if
( fieldList.Trim() ==
""
)
{
dt = sourceTable.Clone();
dt.TableName = tableName;
}
else
{
dt =
new
DataTable( tableName );
ParseFieldList( fieldList,
false
);
DataColumn dc;
foreach
( FieldInfo Field
in
m_FieldInfo )
{
dc = sourceTable.Columns[ Field.FieldName ];
DataColumn column =
new
DataColumn();
column.ColumnName = Field.FieldAlias;
column.DataType = dc.DataType;
column.MaxLength = dc.MaxLength;
column.Expression = dc.Expression;
dt.Columns.Add( column );
}
}
if
( ds !=
null
)
{
ds.Tables.Add( dt );
}
return
dt;
}
private
void
InsertInto(DataTable destTable, DataTable sourceTable,
string
fieldList,
string
rowFilter,
string
sort)
{
ParseFieldList( fieldList,
false
);
DataRow[] rows = sourceTable.Select( rowFilter, sort );
DataRow destRow;
foreach
( DataRow sourceRow
in
rows )
{
destRow = destTable.NewRow();
if
( fieldList ==
""
)
{
foreach
( DataColumn dc
in
destRow.Table.Columns )
{
if
( dc.Expression ==
""
)
{
destRow[ dc ] = sourceRow[ dc.ColumnName ];
}
}
}
else
{
foreach
( FieldInfo field
in
m_FieldInfo )
{
destRow[ field.FieldAlias ] = sourceRow[ field.FieldName ];
}
}
destTable.Rows.Add( destRow );
}
}
private
void
ParseGroupByFieldList(
string
FieldList)
{
if
( GroupByFieldList == FieldList )
{
return
;
}
GroupByFieldInfo =
new
ArrayList();
FieldInfo Field;
string
[] FieldParts;
string
[] Fields = FieldList.Split(
','
);
for
(
int
i = 0; i <= Fields.Length - 1; i++ )
{
Field =
new
FieldInfo();
FieldParts = Fields[ i ].Trim().Split(
' '
);
switch
( FieldParts.Length )
{
case
1:
//to be set at the end of the loop
break
;
case
2:
Field.FieldAlias = FieldParts[ 1 ];
break
;
default
:
return
;
}
FieldParts = FieldParts[ 0 ].Split(
'('
);
switch
( FieldParts.Length )
{
case
1:
Field.FieldName = FieldParts[ 0 ];
break
;
case
2:
Field.Aggregate = FieldParts[ 0 ].Trim().ToLower();
Field.FieldName = FieldParts[ 1 ].Trim(
' '
,
')'
);
break
;
default
:
return
;
}
if
( Field.FieldAlias ==
null
)
{
if
( Field.Aggregate ==
null
)
{
Field.FieldAlias = Field.FieldName;
}
else
{
Field.FieldAlias = Field.Aggregate +
"of"
+ Field.FieldName;
}
}
GroupByFieldInfo.Add( Field );
}
GroupByFieldList = FieldList;
}
private
DataTable CreateGroupByTable(
string
tableName, DataTable sourceTable,
string
fieldList)
{
if
( fieldList ==
null
|| fieldList.Length == 0 )
{
return
sourceTable.Clone();
}
else
{
DataTable dt =
new
DataTable( tableName );
ParseGroupByFieldList( fieldList );
foreach
( FieldInfo Field
in
GroupByFieldInfo )
{
DataColumn dc = sourceTable.Columns[ Field.FieldName ];
if
( Field.Aggregate ==
null
)
{
dt.Columns.Add( Field.FieldAlias, dc.DataType, dc.Expression );
}
else
{
dt.Columns.Add( Field.FieldAlias, dc.DataType );
}
}
if
( ds !=
null
)
{
ds.Tables.Add( dt );
}
return
dt;
}
}
private
void
InsertGroupByInto(DataTable destTable, DataTable sourceTable,
string
fieldList,
string
rowFilter,
string
groupBy)
{
if
( fieldList ==
null
|| fieldList.Length == 0 )
{
return
;
}
ParseGroupByFieldList( fieldList );
ParseFieldList( groupBy,
false
);
DataRow[] rows = sourceTable.Select( rowFilter, groupBy );
DataRow lastSourceRow =
null
, destRow =
null
;
bool
sameRow;
int
rowCount = 0;
foreach
( DataRow sourceRow
in
rows )
{
sameRow =
false
;
if
( lastSourceRow !=
null
)
{
sameRow =
true
;
foreach
( FieldInfo Field
in
m_FieldInfo )
{
if
( !ColumnEqual( lastSourceRow[ Field.FieldName ], sourceRow[ Field.FieldName ] ) )
{
sameRow =
false
;
break
;
}
}
if
( !sameRow )
{
destTable.Rows.Add( destRow );
}
}
if
( !sameRow )
{
destRow = destTable.NewRow();
rowCount = 0;
}
rowCount += 1;
foreach
( FieldInfo field
in
GroupByFieldInfo )
{
switch
( field.Aggregate.ToLower() )
{
case
null
:
case
""
:
case
"last"
:
destRow[ field.FieldAlias ] = sourceRow[ field.FieldName ];
break
;
case
"first"
:
if
( rowCount == 1 )
{
destRow[ field.FieldAlias ] = sourceRow[ field.FieldName ];
}
break
;
case
"count"
:
destRow[ field.FieldAlias ] = rowCount;
break
;
case
"sum"
:
destRow[ field.FieldAlias ] = Add( destRow[ field.FieldAlias ], sourceRow[ field.FieldName ] );
break
;
case
"max"
:
destRow[ field.FieldAlias ] = Max( destRow[ field.FieldAlias ], sourceRow[ field.FieldName ] );
break
;
case
"min"
:
if
( rowCount == 1 )
{
destRow[ field.FieldAlias ] = sourceRow[ field.FieldName ];
}
else
{
destRow[ field.FieldAlias ] = Min( destRow[ field.FieldAlias ], sourceRow[ field.FieldName ] );
}
break
;
}
}
lastSourceRow = sourceRow;
}
if
( destRow !=
null
)
{
destTable.Rows.Add( destRow );
}
}
private
object
Min(
object
a,
object
b)
{
if
( ( a
is
DBNull ) || ( b
is
DBNull ) )
{
return
DBNull.Value;
}
if
( ( (IComparable) a ).CompareTo( b ) == -1 )
{
return
a;
}
else
{
return
b;
}
}
private
object
Max(
object
a,
object
b)
{
if
( a
is
DBNull )
{
return
b;
}
if
( b
is
DBNull )
{
return
a;
}
if
( ( (IComparable) a ).CompareTo( b ) == 1 )
{
return
a;
}
else
{
return
b;
}
}
private
object
Add(
object
a,
object
b)
{
if
( a
is
DBNull )
{
return
b;
}
if
( b
is
DBNull )
{
return
a;
}
return
( (
decimal
) a + (
decimal
) b );
}
private
DataTable CreateJoinTable(
string
tableName, DataTable sourceTable,
string
fieldList)
{
if
( fieldList ==
null
)
{
return
sourceTable.Clone();
}
else
{
DataTable dt =
new
DataTable( tableName );
ParseFieldList( fieldList,
true
);
foreach
( FieldInfo field
in
m_FieldInfo )
{
if
( field.RelationName ==
null
)
{
DataColumn dc = sourceTable.Columns[ field.FieldName ];
dt.Columns.Add( dc.ColumnName, dc.DataType, dc.Expression );
}
else
{
DataColumn dc = sourceTable.ParentRelations[ field.RelationName ].ParentTable.Columns[ field.FieldName ];
dt.Columns.Add( dc.ColumnName, dc.DataType, dc.Expression );
}
}
if
( ds !=
null
)
{
ds.Tables.Add( dt );
}
return
dt;
}
}
private
void
InsertJoinInto(DataTable destTable, DataTable sourceTable,
string
fieldList,
string
rowFilter,
string
sort)
{
if
( fieldList ==
null
)
{
return
;
}
else
{
ParseFieldList( fieldList,
true
);
DataRow[] Rows = sourceTable.Select( rowFilter, sort );
foreach
( DataRow SourceRow
in
Rows )
{
DataRow DestRow = destTable.NewRow();
foreach
( FieldInfo Field
in
m_FieldInfo )
{
if
( Field.RelationName ==
null
)
{
DestRow[ Field.FieldName ] = SourceRow[ Field.FieldName ];
}
else
{
DataRow ParentRow = SourceRow.GetParentRow( Field.RelationName );
DestRow[ Field.FieldName ] = ParentRow[ Field.FieldName ];
}
}
destTable.Rows.Add( DestRow );
}
}
}
#endregion
#region SelectDistinct / Distinct
/// <summary>
/// 按照fieldName从sourceTable中选择出不重复的行,
/// 相当于select distinct fieldName from sourceTable
/// </summary>
/// <param name="tableName">表名</param>
/// <param name="sourceTable">源DataTable</param>
/// <param name="fieldName">列名</param>
/// <returns>一个新的不含重复行的DataTable,列只包括fieldName指明的列</returns>
public
DataTable SelectDistinct(
string
tableName, DataTable sourceTable,
string
fieldName)
{
DataTable dt =
new
DataTable( tableName );
dt.Columns.Add( fieldName, sourceTable.Columns[ fieldName ].DataType );
object
lastValue =
null
;
foreach
( DataRow dr
in
sourceTable.Select(
""
, fieldName ) )
{
if
( lastValue ==
null
|| !( ColumnEqual( lastValue, dr[ fieldName ] ) ) )
{
lastValue = dr[ fieldName ];
dt.Rows.Add(
new
object
[]{lastValue} );
}
}
if
( ds !=
null
&& !ds.Tables.Contains( tableName ) )
{
ds.Tables.Add( dt );
}
return
dt;
}
/// <summary>
/// 按照fieldName从sourceTable中选择出不重复的行,
/// 相当于select distinct fieldName1,fieldName2,,fieldNamen from sourceTable
/// </summary>
/// <param name="tableName">表名</param>
/// <param name="sourceTable">源DataTable</param>
/// <param name="fieldNames">列名数组</param>
/// <returns>一个新的不含重复行的DataTable,列只包括fieldNames中指明的列</returns>
public
DataTable SelectDistinct(
string
tableName, DataTable sourceTable,
string
[] fieldNames)
{
DataTable dt =
new
DataTable( tableName );
object
[] values =
new
object
[fieldNames.Length];
string
fields =
""
;
for
(
int
i = 0; i < fieldNames.Length; i++ )
{
dt.Columns.Add( fieldNames[ i ], sourceTable.Columns[ fieldNames[ i ] ].DataType );
fields += fieldNames[ i ] +
","
;
}
fields = fields.Remove( fields.Length - 1, 1 );
DataRow lastRow =
null
;
foreach
( DataRow dr
in
sourceTable.Select(
""
, fields ) )
{
if
( lastRow ==
null
|| !( RowEqual( lastRow, dr, dt.Columns ) ) )
{
lastRow = dr;
for
(
int
i = 0; i < fieldNames.Length; i++ )
{
values[ i ] = dr[ fieldNames[ i ] ];
}
dt.Rows.Add( values );
}
}
if
( ds !=
null
&& !ds.Tables.Contains( tableName ) )
{
ds.Tables.Add( dt );
}
return
dt;
}
/// <summary>
/// 按照fieldName从sourceTable中选择出不重复的行,
/// 并且包含sourceTable中所有的列。
/// </summary>
/// <param name="tableName">表名</param>
/// <param name="sourceTable">源表</param>
/// <param name="fieldName">字段</param>
/// <returns>一个新的不含重复行的DataTable</returns>
public
DataTable Distinct(
string
tableName, DataTable sourceTable,
string
fieldName)
{
DataTable dt = sourceTable.Clone();
dt.TableName = tableName;
object
lastValue =
null
;
foreach
( DataRow dr
in
sourceTable.Select(
""
, fieldName ) )
{
if
( lastValue ==
null
|| !( ColumnEqual( lastValue, dr[ fieldName ] ) ) )
{
lastValue = dr[ fieldName ];
dt.Rows.Add( dr.ItemArray );
}
}
if
( ds !=
null
&& !ds.Tables.Contains( tableName ) )
{
ds.Tables.Add( dt );
}
return
dt;
}
/// <summary>
/// 按照fieldNames从sourceTable中选择出不重复的行,
/// 并且包含sourceTable中所有的列。
/// </summary>
/// <param name="tableName">表名</param>
/// <param name="sourceTable">源表</param>
/// <param name="fieldNames">字段</param>
/// <returns>一个新的不含重复行的DataTable</returns>
public
DataTable Distinct(
string
tableName, DataTable sourceTable,
string
[] fieldNames)
{
DataTable dt = sourceTable.Clone();
dt.TableName = tableName;
string
fields =
""
;
for
(
int
i = 0; i < fieldNames.Length; i++ )
{
fields += fieldNames[ i ] +
","
;
}
fields = fields.Remove( fields.Length - 1, 1 );
DataRow lastRow =
null
;
foreach
( DataRow dr
in
sourceTable.Select(
""
, fields ) )
{
if
( lastRow ==
null
|| !( RowEqual( lastRow, dr, dt.Columns ) ) )
{
lastRow = dr;
dt.Rows.Add( dr.ItemArray );
}
}
if
( ds !=
null
&& !ds.Tables.Contains( tableName ) )
{
ds.Tables.Add( dt );
}
return
dt;
}
#endregion
#region Select Table Into
/// <summary>
/// 按sort排序,按rowFilter过滤sourceTable,
/// 复制fieldList中指明的字段的数据到新DataTable,并返回之
/// </summary>
/// <param name="tableName">表名</param>
/// <param name="sourceTable">源表</param>
/// <param name="fieldList">字段列表</param>
/// <param name="rowFilter">过滤条件</param>
/// <param name="sort">排序</param>
/// <returns>新DataTable</returns>
public
DataTable SelectInto(
string
tableName, DataTable sourceTable,
string
fieldList,
string
rowFilter,
string
sort)
{
DataTable dt = CreateTable( tableName, sourceTable, fieldList );
InsertInto( dt, sourceTable, fieldList, rowFilter, sort );
return
dt;
}
#endregion
#region Group By Table
public
DataTable SelectGroupByInto(
string
tableName, DataTable sourceTable,
string
fieldList,
string
rowFilter,
string
groupBy)
{
DataTable dt = CreateGroupByTable( tableName, sourceTable, fieldList );
InsertGroupByInto( dt, sourceTable, fieldList, rowFilter, groupBy );
return
dt;
}
#endregion
#region Join Tables
public
DataTable SelectJoinInto(
string
tableName, DataTable sourceTable,
string
fieldList,
string
rowFilter,
string
sort)
{
DataTable dt = CreateJoinTable( tableName, sourceTable, fieldList );
InsertJoinInto( dt, sourceTable, fieldList, rowFilter, sort );
return
dt;
}
#endregion
#region Create Table
public
DataTable CreateTable(
string
tableName,
string
fieldList)
{
DataTable dt =
new
DataTable( tableName );
DataColumn dc;
string
[] Fields = fieldList.Split(
','
);
string
[] FieldsParts;
string
Expression;
foreach
(
string
Field
in
Fields )
{
FieldsParts = Field.Trim().Split(
" "
.ToCharArray(), 3 );
// allow for spaces in the expression
// add fieldname and datatype
if
( FieldsParts.Length == 2 )
{
dc = dt.Columns.Add( FieldsParts[ 0 ].Trim(), Type.GetType(
"System."
+ FieldsParts[ 1 ].Trim(),
true
,
true
) );
dc.AllowDBNull =
true
;
}
else
if
( FieldsParts.Length == 3 )
// add fieldname, datatype, and expression
{
Expression = FieldsParts[ 2 ].Trim();
if
( Expression.ToUpper() ==
"REQUIRED"
)
{
dc = dt.Columns.Add( FieldsParts[ 0 ].Trim(), Type.GetType(
"System."
+ FieldsParts[ 1 ].Trim(),
true
,
true
) );
dc.AllowDBNull =
false
;
}
else
{
dc = dt.Columns.Add( FieldsParts[ 0 ].Trim(), Type.GetType(
"System."
+ FieldsParts[ 1 ].Trim(),
true
,
true
), Expression );
}
}
else
{
return
null
;
}
}
if
( ds !=
null
)
{
ds.Tables.Add( dt );
}
return
dt;
}
public
DataTable CreateTable(
string
tableName,
string
fieldList,
string
keyFieldList)
{
DataTable dt = CreateTable( tableName, fieldList );
string
[] KeyFields = keyFieldList.Split(
','
);
if
( KeyFields.Length > 0 )
{
DataColumn[] KeyFieldColumns =
new
DataColumn[KeyFields.Length];
int
i;
for
( i = 1; i == KeyFields.Length - 1; ++i )
{
KeyFieldColumns[ i ] = dt.Columns[ KeyFields[ i ].Trim() ];
}
dt.PrimaryKey = KeyFieldColumns;
}
return
dt;
}
#endregion
}
}
|
希望本文所述对大家asp.net程序设计有所帮助.
最后此篇关于asp.net DataTable相关操作集锦(筛选,取前N条数据,去重复行,获取指定列数据等)的文章就讲到这里了,如果你想了解更多关于asp.net DataTable相关操作集锦(筛选,取前N条数据,去重复行,获取指定列数据等)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我看到以下宏 here . static const char LogTable256[256] = { #define LT(n) n, n, n, n, n, n, n, n, n, n, n,
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
所以我得到了这个算法我需要计算它的时间复杂度 这样的 for i=1 to n do k=i while (k<=n) do FLIP(A[k]) k
n 的 n 次方(即 n^n)是多项式吗? T(n) = 2T(n/2) + n^n 可以用master方法求解吗? 最佳答案 它不仅不是多项式,而且比阶乘还差。 O(n^n) 支配 O(n!)。同样
我正在研究一种算法,它可以在带有变音符号的字符(tilde、circumflex、caret、umlaut、caron)及其“简单”字符之间进行映射。 例如: ń ǹ ň ñ ṅ ņ ṇ
嗯..我从昨天开始学习APL。我正在观看 YouTube 视频,从基础开始学习各种符号,我正在使用 NARS2000。 我想要的是打印斐波那契数列。我知道有好几种代码,但是因为我没有研究过高深的东西,
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭12 年前。 Improve th
谁能帮我从 N * N * N → N 中找到一个双射数学函数,它接受三个参数 x、y 和 z 并返回数字 n? 我想知道函数 f 及其反函数 f',如果我有 n,我将能够通过应用 f'(n) 来
场景: 用户可以在字符串格式的方程式中输入任意数量的括号对。但是,我需要检查以确保所有括号 ( 或 ) 都有一个相邻的乘数符号 *。因此 3( 应该是 3*( 和 )3 应该是 )*3。 我需要将所有
在 Java 中,表达式: n+++n 似乎评估为等同于: n++ + n 尽管 +n 是一个有效的一元运算符,其优先级高于 n + n 中的算术 + 运算符。因此编译器似乎假设运算符不能是一元运算符
当我阅读 this 问题我记得有人曾经告诉我(很多年前),从汇编程序的角度来看,这两个操作非常不同: n = 0; n = n - n; 这是真的吗?如果是,为什么会这样? 编辑: 正如一些回复所指出
我正在尝试在reveal.js 中加载外部markdown 文件,该文件已编写为遵守数据分隔符语法: You can write your content as a separate file and
我试图弄清楚如何使用 Javascript 生成一个随机 11 个字符串,该字符串需要特定的字母/数字序列,以及位置。 ----------------------------------------
我最近偶然发现了一个资源,其中 2T(n/2) + n/log n 类型 的递归被 MM 宣布为无法解决。 直到今天,当另一种资源被证明是矛盾的(在某种意义上)时,我才接受它作为引理。 根据资源(下面
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我完成的一个代码遵循这个模式: for (i = 0; i < N; i++){ // O(N) //do some processing... } sort(array, array + N
有没有办法证明 f(n) + g(n) = theta(n^2) 还是不可能?假设 f(n) = theta(n^2) & g(n) = O(n^2) 我尝试了以下方法:f(n) = O(n^2) &
所以我目前正在尝试计算我拥有的一些数据的 Pearson R 和 p 值。这是通过以下代码完成的: import numpy as np from scipy.stats import pearson
ltree 列的默认排序为文本。示例:我的表 id、parentid 和 wbs 中有 3 列。 ltree 列 - wbs 将 1.1.12, 1.1.1, 1.1.2 存储在不同的行中。按 wbs
我的目标是编写一个程序来计算在 python 中表示数字所需的位数,如果我选择 number = -1 或任何负数,程序不会终止,这是我的代码: number = -1 cnt = 0 while(n
我是一名优秀的程序员,十分优秀!