|
@@ -610,11 +610,15 @@ namespace OTSIncAReportApp.DataOperation.DataAccess
|
|
string sqliteString = "select fieldid,particleid,AveGray,RectLeft,RectTop,RectWidth,RectHeight,Area,PosX,PosY,TypeId,SegmentNum,FieldPosX " +
|
|
string sqliteString = "select fieldid,particleid,AveGray,RectLeft,RectTop,RectWidth,RectHeight,Area,PosX,PosY,TypeId,SegmentNum,FieldPosX " +
|
|
"as 'SEMPosX',FieldPosY as 'SEMPosY',XrayId,DMAX,DMIN,DPERP,PERIMETER,ORIENTATION,DINSCR,DMEAN,DELONG,DFERET,TypeName,TypeColor,SubParticles,''as Element from MergedParticleInfo where 1=1 " + condition;
|
|
"as 'SEMPosX',FieldPosY as 'SEMPosY',XrayId,DMAX,DMIN,DPERP,PERIMETER,ORIENTATION,DINSCR,DMEAN,DELONG,DFERET,TypeName,TypeColor,SubParticles,''as Element from MergedParticleInfo where 1=1 " + condition;
|
|
DataTable DT = new DataTable();
|
|
DataTable DT = new DataTable();
|
|
|
|
+ DT = dbHelper.ExecuteQuery(sqliteString);
|
|
|
|
+ return DT;
|
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ public DataTable GetInfoForPartucleDevidePage_allParticles(string condition)
|
|
|
|
+ {
|
|
|
|
+ string sqliteString = "select fieldid,particleid,AveGray,RectLeft,RectTop,RectWidth,RectHeight,Area,PosX,PosY,TypeId,SegmentNum,SEMPosX,SEMPosY,XrayId,DMAX,DMIN,DPERP,PERIMETER,ORIENTATION,DINSCR,DMEAN,DELONG,DFERET,TypeName,TypeColor,'' as Element from INcAData where 1=1 " +
|
|
|
|
+ condition;
|
|
|
|
+ DataTable DT = new DataTable();
|
|
DT = dbHelper.ExecuteQuery(sqliteString);
|
|
DT = dbHelper.ExecuteQuery(sqliteString);
|
|
return DT;
|
|
return DT;
|
|
}
|
|
}
|