|
@@ -588,7 +588,7 @@ namespace OTSIncAReportApp.DataOperation.DataAccess
|
|
|
|
|
|
public DataTable GetInfoForPartucleDevidePage_analyticalParticle(string condition)
|
|
public DataTable GetInfoForPartucleDevidePage_analyticalParticle(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 xrayid > -1 and typeid !=9 and typeid !=-1 " +
|
|
|
|
|
|
+ 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 xrayid > -1 and typeid !=9 and typeid !=-1 and typeid !=0" +
|
|
condition;
|
|
condition;
|
|
DataTable DT = new DataTable();
|
|
DataTable DT = new DataTable();
|
|
DT = dbHelper.ExecuteQuery(sqliteString);
|
|
DT = dbHelper.ExecuteQuery(sqliteString);
|
|
@@ -598,7 +598,7 @@ namespace OTSIncAReportApp.DataOperation.DataAccess
|
|
|
|
|
|
public DataTable GetInfoForPartucleDevidePage_otherParticle(string condition)
|
|
public DataTable GetInfoForPartucleDevidePage_otherParticle(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 xrayid > -1 and (typeid =9 or typeid =-1) " +
|
|
|
|
|
|
+ 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 xrayid > -1 and (typeid =9 or typeid =-1 or typeid =0) " +
|
|
condition;
|
|
condition;
|
|
DataTable DT = new DataTable();
|
|
DataTable DT = new DataTable();
|
|
DT = dbHelper.ExecuteQuery(sqliteString);
|
|
DT = dbHelper.ExecuteQuery(sqliteString);
|