GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
db/dbmi_client/select.c File Reference

DBMI Library (client) - select records from table. More...

#include <stdlib.h>
#include <string.h>
#include <grass/gis.h>
#include <grass/dbmi.h>
#include <grass/glocale.h>
Include dependency graph for db/dbmi_client/select.c:

Go to the source code of this file.

Functions

int db_select_int (dbDriver *driver, const char *tab, const char *col, const char *where, int **pval)
 Select array of ordered integers from table/column. More...
 
int db_select_value (dbDriver *driver, const char *tab, const char *key, int id, const char *col, dbValue *val)
 Select one (first) value from table/column for key/id. More...
 
int db_select_CatValArray (dbDriver *driver, const char *tab, const char *key, const char *col, const char *where, dbCatValArray *cvarr)
 Select pairs key/value to array, values are sorted by key (must be integer) More...
 
void db_CatValArray_sort (dbCatValArray *arr)
 Sort key/value array by key. More...
 
int db_CatValArray_sort_by_value (dbCatValArray *arr)
 Sort key/value array by value. More...
 
int db_CatValArray_get_value (dbCatValArray *arr, int key, dbCatVal **cv)
 Find value by key. More...
 
int db_CatValArray_get_value_int (dbCatValArray *arr, int key, int *val)
 Find value (integer) by key. More...
 
int db_CatValArray_get_value_double (dbCatValArray *arr, int key, double *val)
 Find value (double) by key. More...
 

Detailed Description

DBMI Library (client) - select records from table.

(C) 1999-2008 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.

Author
Joel Jones (CERL/UIUC), Radim Blazek

Definition in file db/dbmi_client/select.c.

Function Documentation

int db_CatValArray_get_value ( dbCatValArray *  arr,
int  key,
dbCatVal **  cv 
)

Find value by key.

Parameters
arrdbCatValArray (key/value array)
keykey value
[out]cvdbCatVal structure (key/value) to store within
Returns
DB_OK on success
DB_FAILED on error

Definition at line 466 of file db/dbmi_client/select.c.

References NULL.

int db_CatValArray_get_value_double ( dbCatValArray *  arr,
int  key,
double *  val 
)

Find value (double) by key.

Parameters
arrdbCatValArray (key/value array)
keykey value
[out]valfound value (double)
Returns
DB_OK on success
DB_FAILED on error

Definition at line 518 of file db/dbmi_client/select.c.

References G_debug(), and NULL.

Referenced by IL_vector_input_data_2d(), NetA_get_node_costs(), and Vect_net_build_graph().

int db_CatValArray_get_value_int ( dbCatValArray *  arr,
int  key,
int val 
)

Find value (integer) by key.

Parameters
arrdbCatValArray (key/value array)
keykey value
[out]valfound value (integer)
Returns
DB_OK on success
DB_FAILED on error

Definition at line 492 of file db/dbmi_client/select.c.

References NULL.

Referenced by IL_vector_input_data_2d(), and Vect_net_build_graph().

void db_CatValArray_sort ( dbCatValArray *  arr)

Sort key/value array by key.

Parameters
[in,out]arrdbCatValArray (key/value array)

Definition at line 417 of file db/dbmi_client/select.c.

Referenced by db_select_CatValArray().

int db_CatValArray_sort_by_value ( dbCatValArray *  arr)

Sort key/value array by value.

Parameters
[in,out]arrdbCatValArray (key/value array)
Returns
DB_OK on success
DB_FAILED on error

Definition at line 430 of file db/dbmi_client/select.c.

Referenced by Vedit_bulk_labeling().

int db_select_CatValArray ( dbDriver *  driver,
const char *  tab,
const char *  key,
const char *  col,
const char *  where,
dbCatValArray *  cvarr 
)

Select pairs key/value to array, values are sorted by key (must be integer)

Parameters
driverDB driver
tabtable name
keykey column name
colvalue column name
[out]cvarrdbCatValArray to store within
Returns
number of selected values
-1 on error

Definition at line 268 of file db/dbmi_client/select.c.

References buf, db_append_string(), db_CatValArray_alloc(), db_CatValArray_sort(), db_close_cursor(), db_fetch(), db_free_string(), db_get_column_sqltype(), db_get_column_value(), db_get_cursor_table(), db_get_num_rows(), db_get_string(), db_get_table_column(), db_get_value_double(), db_get_value_int(), db_get_value_string(), db_init_string(), db_open_select_cursor(), db_set_string(), db_sqltype_to_Ctype(), G_asprintf(), G_debug(), G_free(), G_warning(), malloc(), NULL, dialogs::type, and value.

Referenced by IL_vector_input_data_2d(), NetA_get_node_costs(), and Vect_net_build_graph().

int db_select_int ( dbDriver *  driver,
const char *  tab,
const char *  col,
const char *  where,
int **  pval 
)

Select array of ordered integers from table/column.

Parameters
driverDB driver
tabtable name
colcolumn name
wherewhere statement
[out]pvalarray of ordered integer values
Returns
number of selected values
-1 on error

Definition at line 103 of file db/dbmi_client/select.c.

References buf, count, db_close_cursor(), db_fetch(), db_free_string(), db_get_column_sqltype(), db_get_column_value(), db_get_cursor_table(), db_get_table_column(), db_get_value_double(), db_get_value_int(), db_get_value_string(), db_init_string(), db_open_select_cursor(), db_set_string(), db_sqltype_to_Ctype(), G_asprintf(), G_debug(), G_free(), G_warning(), int, NULL, dialogs::type, and value.

Referenced by Vect_set_varray_from_db().

int db_select_value ( dbDriver *  driver,
const char *  tab,
const char *  key,
int  id,
const char *  col,
dbValue *  val 
)

Select one (first) value from table/column for key/id.

Parameters
driverDB driver
tabtable name
keykey column name
ididentifier in key column
colname of column to select the value from
[out]valdbValue to store within
Returns
number of selected values
-1 on error

Definition at line 204 of file db/dbmi_client/select.c.

References buf, count, db_close_cursor(), db_copy_value(), db_fetch(), db_free_string(), db_get_column_value(), db_get_cursor_table(), db_get_table_column(), db_init_string(), db_open_select_cursor(), db_set_string(), G_asprintf(), G_free(), G_warning(), G_zero(), NULL, and value.