博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
由错误的方法中得到的
阅读量:5362 次
发布时间:2019-06-15

本文共 1051 字,大约阅读时间需要 3 分钟。

- -!今天做了件糊涂事,居然忘记用sp来直接cross表格来取值。不过由此也得到一个方法:

None.gif
        
private
 
struct
 SLocation
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
InBlock.gif            
public string  name; 
InBlock.gif            
public int ID; 
ExpandedBlockEnd.gif        }
 
None.gif        
None.gif        
private
 ArrayList GetLocationArrayList()
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
if (this._dsLocation.Tables.Count<=0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
this._dsLocation = this._loc.GetLocationList();
ExpandedSubBlockEnd.gif            }
InBlock.gif            DataTable _dt   
= this._dsLocation.Tables[0];
InBlock.gif            ArrayList _al   
= new ArrayList();
InBlock.gif            SLocation _stcloc 
= new SLocation();
InBlock.gif            
foreach (DataRow _dr in _dt.Rows)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _stcloc.ID   
= Convert.ToInt32(_dr["LOCATION_ID"]);
InBlock.gif                _stcloc.name 
= _dr["LOCATION_NAME"].ToString();
InBlock.gif                _al.Add(_stcloc);
ExpandedSubBlockEnd.gif            }
InBlock.gif            
return _al;
ExpandedBlockEnd.gif        }
None.gif
None.gif        
private
 String GetLocationNameByID(
int
 ID)
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
if (this._alLocation.Count<=0)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
this._alLocation  = this.GetLocationArrayList();
ExpandedSubBlockEnd.gif            }
InBlock.gif            IEnumerator _emun   
= _alLocation.GetEnumerator();
InBlock.gif            SLocation _stcloc   
= new SLocation();
InBlock.gif            String _locName     
= string.Empty;
InBlock.gif            
for (int i=0;i<_alLocation.Count-1;i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _emun.MoveNext();
InBlock.gif                _stcloc 
= (SLocation)_emun.Current;
InBlock.gif                
if (_stcloc.ID  == ID)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    _locName    
= _stcloc.name;
InBlock.gif                    
break;
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
InBlock.gif            
return _locName;
ExpandedBlockEnd.gif        }

 

先声明一个结构,再将结构做为object放入arraylist.

over

转载于:https://www.cnblogs.com/syveen/archive/2005/07/09/189271.html

你可能感兴趣的文章
三测单
查看>>
MyBatis 缓存
查看>>
SQL中left outer join与inner join 混用时,SQL Server自动优化执行计划
查看>>
mac下python实现vmstat
查看>>
jxl.dll操作总结
查看>>
成员函数对象类的const和非const成员函数的重载
查看>>
机器学习实战-----八大分类器识别树叶带源码
查看>>
eclipse git 新的文件没有add index选项
查看>>
java 泛型
查看>>
VC NetShareAdd的用法
查看>>
java web项目中后台控制层对参数进行自定义验证 类 Pattern
查看>>
图论学习一之basic
查看>>
Java的Array和ArrayList
查看>>
记录Ubuntu 16.04 安装Docker CE
查看>>
安东尼奥·维瓦尔第——巴洛克音乐的奇葩
查看>>
pandas的增删改查
查看>>
HDU 5933/思维
查看>>
字节对齐
查看>>
Design Tic-Tac Toe
查看>>
SQL中的去重操作
查看>>