Package edm.edom3
Interface EDMQueryResultHelper
-
public interface EDMQueryResultHelper
- Author:
- es
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getColumnSdaiType(int column)
Get column Sdai Type.EDMRow
getRow(int row, boolean sdaiTyped)
Get specific row from query result
-
-
-
Method Detail
-
getColumnSdaiType
long getColumnSdaiType(int column) throws EdmiException
Get column Sdai Type.- Parameters:
column
- column number (counting from 0)- Returns:
- column sdai type
- Throws:
EdmiException
- if the method fails
-
getRow
EDMRow getRow(int row, boolean sdaiTyped) throws EdmiException
Get specific row from query result- Parameters:
row
- row number of cell (counting from 0)sdaiTyped
- if True, EDMSelects will be filled with exact Sdai Type of value, otherwise just 5 basic types used - double,int,long,string,select- Returns:
- specified row
- Throws:
EdmiException
- if the method fails
-
-