GRASS 8 Programmer's Manual 8.6.0dev(2026)-1d1e47ad9d
Loading...
Searching...
No Matches
d_fetch.c
Go to the documentation of this file.
1/*!
2 * \file db/dbmi_driver/d_fetch.c
3 *
4 * \brief DBMI Library (driver) - fetch data
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 <grass/dbmi.h>
16#include "macros.h"
17#include "dbstubs.h"
18
19static int valid_cursor(dbCursor *cursor, int position);
20
21/*!
22 \brief Fetch data
23
24 \return DB_OK on success
25 \return DB_FAILED on failure
26 */
27int db_d_fetch(void)
28{
29 dbToken token;
31 int stat;
32 int more;
33 int position;
34
35 /* get the arg(s) */
36 DB_RECV_TOKEN(&token);
37 DB_RECV_INT(&position);
38 cursor = (dbCursor *)db_find_token(token);
39 if (!valid_cursor(cursor, position)) {
41 return DB_FAILED;
42 }
43
44 /* call the procedure */
45 stat = db_driver_fetch(cursor, position, &more);
46
47 /* send the return code */
48 if (stat != DB_OK) {
50 return DB_OK;
51 }
53
54 /* results */
55 DB_SEND_INT(more);
56 if (more) {
58 }
59
60 return DB_OK;
61}
62
63static int valid_cursor(dbCursor *cursor, int position)
64{
65 if (cursor == NULL)
66 return 0;
67
69 db_error("not a fetchable cursor");
70 return 0;
71 }
72
73 if (position != DB_NEXT && !db_test_cursor_mode_scroll(cursor)) {
74 db_error("not a scrollable cursor");
75 return 0;
76 }
77
78 return 1;
79}
#define NULL
Definition ccmath.h:32
int db_d_fetch(void)
Fetch data.
Definition d_fetch.c:27
Main header of GRASS DataBase Management Interface.
int dbToken
Definition dbmi.h:145
#define DB_FAILED
Definition dbmi.h:72
#define DB_OK
Definition dbmi.h:71
#define DB_NEXT
Definition dbmi.h:114
int(* db_driver_fetch)(dbCursor *, int, int *)
int db_test_cursor_type_fetch(dbCursor *)
Check cursor type.
Definition cursor.c:144
dbAddress db_find_token(dbToken)
Find token.
void db_error(const char *)
Report error message.
int db_test_cursor_mode_scroll(dbCursor *)
Check if cursor mode is 'scroll'.
Definition cursor.c:249
#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_SEND_TABLE_DATA(x)
Definition macros.h:148
#define DB_RECV_TOKEN(x)
Definition macros.h:219
#define DB_SEND_FAILURE()
Definition macros.h:18