GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
DBMI Library (client) - column info. More...
#include <stdlib.h>
#include <string.h>
#include <grass/gis.h>
#include <grass/dbmi.h>
#include <grass/glocale.h>
Go to the source code of this file.
Functions | |
int | db_column_sqltype (dbDriver *driver, const char *tab, const char *col) |
Get column sqltype. More... | |
int | db_column_Ctype (dbDriver *driver, const char *tab, const char *col) |
Get column ctype. More... | |
int | db_get_column (dbDriver *Driver, const char *tname, const char *cname, dbColumn **Column) |
Get column structure by table and column name. More... | |
DBMI Library (client) - column info.
(C) 1999-2008, 2011 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.
Definition in file dbmi_client/column.c.
int db_column_Ctype | ( | dbDriver * | driver, |
const char * | tab, | ||
const char * | col | ||
) |
Get column ctype.
Supported types:
driver | DB driver |
tab | table name |
col | column name |
Definition at line 99 of file dbmi_client/column.c.
int db_column_sqltype | ( | dbDriver * | driver, |
const char * | tab, | ||
const char * | col | ||
) |
Get column sqltype.
See db_sqltype_name().
Supported types:
driver | DB driver |
tab | table name |
col | column name |
Definition at line 51 of file dbmi_client/column.c.
Get column structure by table and column name.
Column is set to new dbColumn structure or NULL if column was not found
Driver | DB driver | |
tname | table name | |
cname | column name | |
[out] | Column | column structure to store within |
Definition at line 124 of file dbmi_client/column.c.