|
GRASS 8 Programmer's Manual 8.6.0dev(2026)-4bb960b182
|
DBMI Library (base) - external data representation (column) More...

Go to the source code of this file.
Functions | |
| int | db__send_column_definition (dbColumn *column) |
| Send column definition. | |
| int | db__recv_column_definition (dbColumn *column) |
| Receive column definition. | |
| int | db__send_column_value (dbColumn *column) |
| Send column value. | |
| int | db__recv_column_value (dbColumn *column) |
| Receive column value. | |
| int | db__send_column_default_value (dbColumn *column) |
| Send column default value. | |
| int | db__recv_column_default_value (dbColumn *column) |
| Receive column default value. | |
DBMI Library (base) - external data representation (column)
SPDX-FileCopyrightText: 1999-2009, 2011 GRASS Development Team SPDX-License-Identifier: GPL-2.0-or-later
Definition in file xdrcolumn.c.
Receive column default value.
| column | pointer to dbColumn |
Definition at line 118 of file xdrcolumn.c.
References db__recv_value(), db_get_column_default_value(), db_get_column_sqltype(), and db_sqltype_to_Ctype().
Receive column definition.
| column | pointer to dbColumn |
Definition at line 51 of file xdrcolumn.c.
References DB_OK, DB_RECV_CHAR, DB_RECV_COLUMN_DEFAULT_VALUE, DB_RECV_INT, and DB_RECV_STRING.
Receive column value.
| column | pointer to dbColumn |
Definition at line 92 of file xdrcolumn.c.
References db__recv_value(), db_get_column_sqltype(), db_get_column_value(), and db_sqltype_to_Ctype().
Send column default value.
| column | pointer to dbColumn |
Definition at line 105 of file xdrcolumn.c.
References db__send_value(), db_get_column_default_value(), db_get_column_sqltype(), and db_sqltype_to_Ctype().
Send column definition.
| column | pointer to dbColumn |
Definition at line 23 of file xdrcolumn.c.
References DB_OK, DB_SEND_CHAR, DB_SEND_COLUMN_DEFAULT_VALUE, DB_SEND_INT, and DB_SEND_STRING.
Send column value.
| column | pointer to dbColumn |
Definition at line 79 of file xdrcolumn.c.
References db__send_value(), db_get_column_sqltype(), db_get_column_value(), and db_sqltype_to_Ctype().