GRASS 8 Programmer's Manual 8.6.0dev(2026)-1d1e47ad9d
Loading...
Searching...
No Matches
d_openselect.c
Go to the documentation of this file.
1/*!
2 * \file db/dbmi_driver/d_openselect.c
3 *
4 * \brief DBMI Library (driver) - open select cursor
5 *
6 * (C) 1999-2008 by the GRASS Development Team
7 *
8 * This program is free software under the GNU General Public
9 * License (>=v2). Read the file COPYING that comes with GRASS
10 * for details.
11 *
12 * \author Joel Jones (CERL/UIUC), Radim Blazek
13 */
14
15#include <stdlib.h>
16#include <grass/dbmi.h>
17#include "macros.h"
18#include "dbstubs.h"
19
20/*!
21 \brief Open select cursor
22
23 \return DB_OK on success
24 \return DB_FAILED on failure
25 */
27{
29 int stat;
30 dbToken token;
31 dbString select;
32 int mode;
33
34 /* get the arg(s) */
35 db_init_string(&select);
36 DB_RECV_STRING(&select);
37 DB_RECV_INT(&mode);
38
39 /* create a cursor */
40 cursor = (dbCursor *)db_malloc(sizeof(dbCursor));
41 if (cursor == NULL)
42 return db_get_error_code();
44 if (token < 0)
45 return db_get_error_code();
47
48 /* call the procedure */
50 db_free_string(&select);
51
52 /* send the return code */
53 if (stat != DB_OK) {
55 return DB_OK;
56 }
58
59 /* mark this as a readonly cursor */
61
62 /* add this cursor to the cursors managed by the driver state */
64
65 /* results */
66 DB_SEND_TOKEN(&token);
67 DB_SEND_INT(cursor->type);
68 DB_SEND_INT(cursor->mode);
70 return DB_OK;
71}
#define NULL
Definition ccmath.h:32
int db_d_open_select_cursor(void)
Open select cursor.
Main header of GRASS DataBase Management Interface.
int dbToken
Definition dbmi.h:145
#define DB_OK
Definition dbmi.h:71
void * dbAddress
Definition dbmi.h:144
int(* db_driver_open_select_cursor)(dbString *, dbCursor *, int)
dbToken db_new_token(dbAddress)
Add new token.
void db_init_cursor(dbCursor *)
Initialize dbCursor.
Definition cursor.c:23
void db_set_cursor_type_readonly(dbCursor *)
Set cursor to be read-only (select)
Definition cursor.c:111
void db_free_string(dbString *)
Free allocated space for dbString.
Definition string.c:150
int db_get_error_code(void)
Get error code.
void db_init_string(dbString *)
Initialize dbString.
Definition string.c:25
void db__add_cursor_to_driver_state(dbCursor *)
Add cursor do driver state.
void * db_malloc(int)
Allocate memory.
#define DB_SEND_TABLE_DEFINITION(x)
Definition macros.h:137
#define DB_SEND_INT(x)
Definition macros.h:82
#define DB_RECV_INT(x)
Definition macros.h:87
#define DB_SEND_SUCCESS()
Definition macros.h:13
#define DB_RECV_STRING(x)
Definition macros.h:39
#define DB_SEND_TOKEN(x)
Definition macros.h:214
#define DB_SEND_FAILURE()
Definition macros.h:18