public IPlugInCursorHelper FetchByID(int ClassIndex, int ID, object fieldMap) { OGRCursor allCursor = new OGRCursor(this, null, (System.Array)fieldMap, null, ID); return (IPlugInCursorHelper)allCursor; }
public IPlugInCursorHelper FetchByEnvelope(int ClassIndex, IEnvelope env, bool strictSearch, string whereClause, object fieldMap) { try { OGRCursor allCursor = new OGRCursor(this, whereClause, (System.Array)fieldMap, env); return((IPlugInCursorHelper)allCursor); } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); return(null); } }
public IPlugInCursorHelper FetchByID(int ClassIndex, int ID, object fieldMap) { try { OGRCursor allCursor = new OGRCursor(this, null, (System.Array)fieldMap, null, ID); return((IPlugInCursorHelper)allCursor); } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); return(null); } }
public IPlugInCursorHelper FetchByEnvelope(int ClassIndex, IEnvelope env, bool strictSearch, string whereClause, object fieldMap) { OGRCursor allCursor = new OGRCursor(this, whereClause, (System.Array)fieldMap, env); return (IPlugInCursorHelper)allCursor; }
public IPlugInCursorHelper FetchAll(int ClassIndex, string whereClause, object fieldMap) { OGRCursor allCursor = new OGRCursor(this, whereClause, (System.Array) fieldMap, null); return (IPlugInCursorHelper)allCursor; }
public IPlugInCursorHelper FetchByID(int ClassIndex, int ID, object fieldMap) { try { OGRCursor allCursor = new OGRCursor(this, null, (System.Array)fieldMap, null, ID); return (IPlugInCursorHelper)allCursor; } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); return null; } }
public IPlugInCursorHelper FetchByEnvelope(int ClassIndex, IEnvelope env, bool strictSearch, string whereClause, object fieldMap) { try { OGRCursor allCursor = new OGRCursor(this, whereClause, (System.Array)fieldMap, env); return (IPlugInCursorHelper)allCursor; } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); return null; } }
public IPlugInCursorHelper FetchByID(int classIndex, int id, object fieldMap) { OGRCursor allCursor = new OGRCursor(this, null, (Array)fieldMap, null, id); return allCursor; }