/***************************************************************************** * * MODULE: OGR driver * * AUTHOR(S): Radim Blazek * * PURPOSE: DB driver for OGR sources * * COPYRIGHT: (C) 2004 by the GRASS Development Team * * This program is free software under the GNU General Public * License (>=v2). Read the file COPYING that comes with GRASS * for details. * *****************************************************************************/ #include #include #include "ogr_api.h" #include "globals.h" #include "proto.h" int db__driver_open_select_cursor( dbString *sel, dbCursor *dbc, int mode ) { cursor *c; dbTable *table; init_error(); /* allocate cursor */ c = alloc_cursor(); if (c == NULL) return DB_FAILED; db_set_cursor_mode(dbc, mode); db_set_cursor_type_readonly(dbc); c->hLayer = OGR_DS_ExecuteSQL ( hDs, db_get_string(sel), NULL, NULL ); if ( c->hLayer == NULL ) { append_error("Cannot select: \n"); append_error(db_get_string(sel) ); append_error( "\n" ); report_error(); return DB_FAILED; } if ( describe_table( c->hLayer, &table, c) == DB_FAILED ) { append_error("Cannot describe table\n"); report_error(); OGR_DS_ReleaseResultSet( hDs, c->hLayer ); return DB_FAILED; } /* record table with dbCursor */ db_set_cursor_table(dbc, table); /* set dbCursor's token for my cursor */ db_set_cursor_token(dbc, c->token); return DB_OK; }