GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
d_desc_table.c
Go to the documentation of this file.
1 
15 #include <stdlib.h>
16 #include <grass/dbmi.h>
17 #include "macros.h"
18 #include "dbstubs.h"
19 
27 {
28  dbTable *table;
29  dbString name;
30  int stat;
31 
32  db_init_string(&name);
33 
34  /* get the arg(s) */
35  DB_RECV_STRING(&name);
36 
37  /* call the procedure */
38  stat = db_driver_describe_table(&name, &table);
39 
40  /* send the return code */
41  if (stat != DB_OK) {
43  return DB_OK;
44  }
46 
47  /* results */
48  db_set_table_name(table, db_get_string(&name));
50 
51  db_free_string(&name);
52  db_free_table(table);
53  return DB_OK;
54 }
int db_set_table_name(dbTable *table, const char *name)
int(* db_driver_describe_table)()
string name
Definition: render.py:1314
int stat
Definition: g3dcolor.c:369
#define DB_SEND_FAILURE()
Definition: macros.h:9
#define DB_SEND_TABLE_DEFINITION(x)
Definition: macros.h:62
void db_free_table(dbTable *table)
char * db_get_string(dbString *x)
Definition: string.c:131
#define DB_SEND_SUCCESS()
Definition: macros.h:7
void db_free_string(dbString *x)
Definition: string.c:142
int db_d_describe_table(void)
Describe table.
Definition: d_desc_table.c:26
void db_init_string(dbString *x)
Definition: string.c:11
#define DB_RECV_STRING(x)
Definition: macros.h:18