GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
macros.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define DB_RETURN_ERR   return(db_get_error_code());
 
#define DB_START_PROCEDURE_CALL(x)   {if(db__start_procedure_call(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_RETURN_CODE(x)   {if(db__recv_return_code(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_SUCCESS()   {if(db__send_success()!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_FAILURE()   {if(db__send_failure()!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_STRING(x)   {if(db__send_string(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_STRING_ARRAY(x, n)   {if(db__send_string_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_C_STRING(x)   {if(db__send_Cstring(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_STRING(x)   {if(db__recv_string(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_STRING_ARRAY(x, n)   {if(db__recv_string_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_CHAR(x)   {if(db__send_char(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_CHAR(x)   {if(db__recv_char(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_SHORT(x)   {if(db__send_short(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_SHORT(x)   {if(db__recv_short(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_SHORT_ARRAY(x, n)   {if(db__send_short_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_SHORT_ARRAY(x, n)   {if(db__recv_short_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_INT(x)   {if(db__send_int(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_INT(x)   {if(db__recv_int(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_FLOAT(x)   {if(db__send_float(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_FLOAT(x)   {if(db__recv_float(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_DOUBLE(x)   {if(db__send_double(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_DOUBLE(x)   {if(db__recv_double(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_DATETIME(x)   {if(db__send_datetime(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_DATETIME(x)   {if(db__recv_datetime(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_HANDLE(x)   {if(db__send_handle(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_HANDLE(x)   {if(db__recv_handle(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_TABLE_DEFINITION(x)   {if(db__send_table_definition(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_TABLE_DEFINITION(x)   {if(db__recv_table_definition(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_TABLE_DATA(x)   {if(db__send_table_data(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_TABLE_DATA(x)   {if(db__recv_table_data(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_TABLE_PRIV(x)   {if(db__send_table_priv(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_TABLE_PRIV(x)   {if(db__recv_table_priv(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_COLUMN_PRIVS(x)   {if(db__send_column_privs(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_COLUMN_PRIVS(x)   {if(db__recv_column_privs(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_COLUMN_DEFINITION(x)   {if(db__send_column_definition(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_COLUMN_DEFINITION(x)   {if(db__recv_column_definition(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_COLUMN_VALUE(x)   {if(db__send_column_value(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_COLUMN_VALUE(x)   {if(db__recv_column_value(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_COLUMN_DEFAULT_VALUE(x)   {if(db__send_column_default_value(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_COLUMN_DEFAULT_VALUE(x)   {if(db__recv_column_default_value(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_TOKEN(x)   {if(db__send_token(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_TOKEN(x)   {if(db__recv_token(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_INDEX(x)   {if(db__send_index(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_INDEX_ARRAY(x, n)   {if(db__send_index_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_INDEX(x)   {if(db__recv_index(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_INDEX_ARRAY(x, n)   {if(db__recv_index_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_FK(x)   {if(db__send_fk(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_SEND_FK_ARRAY(x, n)   {if(db__send_fk_array(x,n)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_FK(x)   {if(db__recv_fk(x)!=DB_OK) DB_RETURN_ERR}
 
#define DB_RECV_FK_ARRAY(x, n)   {if(db__recv_fk_array(x,n)!=DB_OK) DB_RETURN_ERR}
 

Macro Definition Documentation

#define DB_RECV_CHAR (   x)    {if(db__recv_char(x)!=DB_OK) DB_RETURN_ERR}
#define DB_RECV_COLUMN_DEFAULT_VALUE (   x)    {if(db__recv_column_default_value(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 94 of file macros.h.

Referenced by db__recv_column_definition().

#define DB_RECV_COLUMN_DEFINITION (   x)    {if(db__recv_column_definition(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 84 of file macros.h.

Referenced by db__recv_table_definition(), and db_d_add_column().

#define DB_RECV_COLUMN_PRIVS (   x)    {if(db__recv_column_privs(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 79 of file macros.h.

#define DB_RECV_COLUMN_VALUE (   x)    {if(db__recv_column_value(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 89 of file macros.h.

Referenced by db__recv_table_data().

#define DB_RECV_DATETIME (   x)    {if(db__recv_datetime(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 54 of file macros.h.

Referenced by db__recv_value().

#define DB_RECV_DOUBLE (   x)    {if(db__recv_double(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 49 of file macros.h.

Referenced by db__recv_datetime(), and db__recv_value().

#define DB_RECV_FK (   x)    {if(db__recv_fk(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 115 of file macros.h.

#define DB_RECV_FK_ARRAY (   x,
  n 
)    {if(db__recv_fk_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 117 of file macros.h.

#define DB_RECV_FLOAT (   x)    {if(db__recv_float(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 44 of file macros.h.

#define DB_RECV_HANDLE (   x)    {if(db__recv_handle(x)!=DB_OK) DB_RETURN_ERR}
#define DB_RECV_INDEX (   x)    {if(db__recv_index(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 106 of file macros.h.

Referenced by db__recv_index_array(), and db_d_create_index().

#define DB_RECV_INDEX_ARRAY (   x,
  n 
)    {if(db__recv_index_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 108 of file macros.h.

Referenced by db_list_indexes().

#define DB_RECV_SHORT (   x)    {if(db__recv_short(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 30 of file macros.h.

#define DB_RECV_SHORT_ARRAY (   x,
  n 
)    {if(db__recv_short_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 34 of file macros.h.

Referenced by db_d_bind_update().

#define DB_RECV_STRING_ARRAY (   x,
  n 
)    {if(db__recv_string_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 20 of file macros.h.

Referenced by db_d_list_databases(), and db_list_tables().

#define DB_RECV_TABLE_DATA (   x)    {if(db__recv_table_data(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 69 of file macros.h.

Referenced by db_d_insert(), db_d_update(), and db_fetch().

#define DB_RECV_TABLE_DEFINITION (   x)    {if(db__recv_table_definition(x)!=DB_OK) DB_RETURN_ERR}
#define DB_RECV_TABLE_PRIV (   x)    {if(db__recv_table_priv(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 74 of file macros.h.

#define DB_RETURN_ERR   return(db_get_error_code());

Definition at line 1 of file macros.h.

#define DB_SEND_C_STRING (   x)    {if(db__send_Cstring(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 16 of file macros.h.

Referenced by db__send_failure(), and db_d_version().

#define DB_SEND_CHAR (   x)    {if(db__send_char(x)!=DB_OK) DB_RETURN_ERR}
#define DB_SEND_COLUMN_DEFAULT_VALUE (   x)    {if(db__send_column_default_value(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 92 of file macros.h.

Referenced by db__send_column_definition().

#define DB_SEND_COLUMN_DEFINITION (   x)    {if(db__send_column_definition(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 82 of file macros.h.

Referenced by db__send_table_definition(), and db_add_column().

#define DB_SEND_COLUMN_PRIVS (   x)    {if(db__send_column_privs(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 77 of file macros.h.

#define DB_SEND_COLUMN_VALUE (   x)    {if(db__send_column_value(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 87 of file macros.h.

Referenced by db__send_table_data().

#define DB_SEND_DATETIME (   x)    {if(db__send_datetime(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 52 of file macros.h.

Referenced by db__send_value().

#define DB_SEND_DOUBLE (   x)    {if(db__send_double(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 47 of file macros.h.

Referenced by db__send_datetime(), and db__send_value().

#define DB_SEND_FK (   x)    {if(db__send_fk(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 111 of file macros.h.

#define DB_SEND_FK_ARRAY (   x,
  n 
)    {if(db__send_fk_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 113 of file macros.h.

#define DB_SEND_FLOAT (   x)    {if(db__send_float(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 42 of file macros.h.

#define DB_SEND_HANDLE (   x)    {if(db__send_handle(x)!=DB_OK) DB_RETURN_ERR}
#define DB_SEND_INDEX (   x)    {if(db__send_index(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 102 of file macros.h.

Referenced by db__send_index_array(), and db_create_index().

#define DB_SEND_INDEX_ARRAY (   x,
  n 
)    {if(db__send_index_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 104 of file macros.h.

Referenced by db_d_list_indexes().

#define DB_SEND_SHORT (   x)    {if(db__send_short(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 28 of file macros.h.

#define DB_SEND_SHORT_ARRAY (   x,
  n 
)    {if(db__send_short_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 32 of file macros.h.

Referenced by db_bind_update().

#define DB_SEND_STRING_ARRAY (   x,
  n 
)    {if(db__send_string_array(x,n)!=DB_OK) DB_RETURN_ERR}

Definition at line 14 of file macros.h.

Referenced by db_d_list_tables(), and db_list_databases().

#define DB_SEND_TABLE_DATA (   x)    {if(db__send_table_data(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 67 of file macros.h.

Referenced by db_d_fetch(), db_insert(), and db_update().

#define DB_SEND_TABLE_DEFINITION (   x)    {if(db__send_table_definition(x)!=DB_OK) DB_RETURN_ERR}
#define DB_SEND_TABLE_PRIV (   x)    {if(db__send_table_priv(x)!=DB_OK) DB_RETURN_ERR}

Definition at line 72 of file macros.h.