Exemplo n.º 1
0
 public IPlugInCursorHelper FetchByID(int ClassIndex, int ID, object fieldMap)
 {
     OGRCursor allCursor = new OGRCursor(this, null, (System.Array)fieldMap, null, ID);
     
     return (IPlugInCursorHelper)allCursor;
     
 }
Exemplo n.º 2
0
 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);
     }
 }
Exemplo n.º 3
0
 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);
     }
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 5
0
        public IPlugInCursorHelper FetchAll(int ClassIndex, string whereClause, object fieldMap)
        {            
           OGRCursor allCursor = new OGRCursor(this, whereClause, (System.Array) fieldMap, null);

           return (IPlugInCursorHelper)allCursor;         
        }
Exemplo n.º 6
0
        public IPlugInCursorHelper FetchByID(int ClassIndex, int ID, object fieldMap)
        {
            OGRCursor allCursor = new OGRCursor(this, null, (System.Array)fieldMap, null, ID);

            return (IPlugInCursorHelper)allCursor;
        }
Exemplo n.º 7
0
        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;
        }
Exemplo n.º 8
0
        public IPlugInCursorHelper FetchAll(int ClassIndex, string whereClause, object fieldMap)
        {
            OGRCursor allCursor = new OGRCursor(this, whereClause, (System.Array) fieldMap, null);

               return (IPlugInCursorHelper)allCursor;
        }
Exemplo n.º 9
0
 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;
     }
 }
Exemplo n.º 10
0
 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;
     }
 }
Exemplo n.º 11
0
        public IPlugInCursorHelper FetchByID(int classIndex, int id, object fieldMap)
        {
            OGRCursor allCursor = new OGRCursor(this, null, (Array)fieldMap, null, id);

            return allCursor;
        }