GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-36359e2344
|
Go to the source code of this file.
Functions | |
int | db_d_add_column (void) |
Add column to table. More... | |
int | db_d_bind_update (void) |
ADD. More... | |
int | db_d_close_cursor (void) |
Close cursor. More... | |
int | db_d_close_database (void) |
Close database connection. More... | |
int | db_d_create_database (void) |
Create database. More... | |
int | db_d_create_index (void) |
Create index. More... | |
int | db_d_create_table (void) |
Create table. More... | |
int | db_d_delete_database (void) |
Delete database. More... | |
int | db_d_describe_table (void) |
Describe table. More... | |
int | db_d_drop_column (void) |
Drop column. More... | |
int | db_d_drop_index (void) |
Drop index. More... | |
int | db_d_drop_table (void) |
Drop table. More... | |
int | db_d_execute_immediate (void) |
Execute SQL statements. More... | |
int | db_d_begin_transaction (void) |
Begin transaction. More... | |
int | db_d_commit_transaction (void) |
Commit transaction. More... | |
int | db_d_fetch (void) |
Fetch data. More... | |
int | db_d_get_num_rows (void) |
Get number of selected rows. More... | |
int | db_d_find_database (void) |
Find database. More... | |
int | db_d_grant_on_table (void) |
Grant privileges on table. More... | |
int | db_d_insert (void) |
Insert new record into table. More... | |
int | db_d_delete (void) |
Delete record (?) More... | |
int | db_d_list_databases (void) |
List databases. More... | |
int | db_d_list_indexes (void) |
List indexes. More... | |
int | db_d_list_tables (void) |
List available tables for given connection. More... | |
int | db_d_open_database (void) |
Open database connection. More... | |
int | db_d_open_insert_cursor (void) |
Open insert cursor. More... | |
int | db_d_open_select_cursor (void) |
Open select cursor. More... | |
int | db_d_open_update_cursor (void) |
Open update cursor. More... | |
int | db_d_update (void) |
? More... | |
int | db_d_version (void) |
Get version info. More... | |
int db_d_add_column | ( | void | ) |
Add column to table.
Definition at line 26 of file d_add_col.c.
int db_d_begin_transaction | ( | void | ) |
Begin transaction.
Definition at line 56 of file d_execute.c.
int db_d_bind_update | ( | void | ) |
int db_d_close_cursor | ( | void | ) |
Close cursor.
Definition at line 26 of file d_close_cur.c.
int db_d_close_database | ( | void | ) |
Close database connection.
Definition at line 25 of file d_closedb.c.
int db_d_commit_transaction | ( | void | ) |
Commit transaction.
Definition at line 80 of file d_execute.c.
int db_d_create_database | ( | void | ) |
Create database.
Definition at line 26 of file d_createdb.c.
int db_d_create_index | ( | void | ) |
Create index.
Definition at line 26 of file d_create_idx.c.
int db_d_create_table | ( | void | ) |
Create table.
Definition at line 26 of file d_create_tab.c.
int db_d_delete | ( | void | ) |
Delete record (?)
Definition at line 25 of file d_delete.c.
int db_d_delete_database | ( | void | ) |
Delete database.
Definition at line 26 of file d_deletedb.c.
int db_d_describe_table | ( | void | ) |
Describe table.
Definition at line 26 of file d_desc_table.c.
int db_d_drop_column | ( | void | ) |
Drop column.
Definition at line 26 of file d_drop_col.c.
int db_d_drop_index | ( | void | ) |
Drop index.
Definition at line 26 of file d_drop_index.c.
int db_d_drop_table | ( | void | ) |
Drop table.
Definition at line 26 of file d_drop_tab.c.
int db_d_execute_immediate | ( | void | ) |
Execute SQL statements.
Definition at line 26 of file d_execute.c.
int db_d_fetch | ( | void | ) |
int db_d_find_database | ( | void | ) |
Find database.
Definition at line 26 of file d_finddb.c.
int db_d_get_num_rows | ( | void | ) |
int db_d_grant_on_table | ( | void | ) |
int db_d_insert | ( | void | ) |
Insert new record into table.
Definition at line 25 of file d_insert.c.
int db_d_list_databases | ( | void | ) |
List databases.
Definition at line 26 of file d_listdb.c.
int db_d_list_indexes | ( | void | ) |
List indexes.
Definition at line 26 of file d_list_idx.c.
int db_d_list_tables | ( | void | ) |
List available tables for given connection.
Definition at line 25 of file d_list_tabs.c.
int db_d_open_database | ( | void | ) |
Open database connection.
Definition at line 26 of file d_opendb.c.
int db_d_open_insert_cursor | ( | void | ) |
Open insert cursor.
Definition at line 25 of file d_openinsert.c.
int db_d_open_select_cursor | ( | void | ) |
Open select cursor.
Definition at line 26 of file d_openselect.c.
int db_d_open_update_cursor | ( | void | ) |
Open update cursor.
Definition at line 26 of file d_openupdate.c.
int db_d_update | ( | void | ) |
int db_d_version | ( | void | ) |
Get version info.
Definition at line 24 of file d_version.c.
int procnum |
Definition at line 33 of file procs.h.
Referenced by db__start_procedure_call(), db_driver(), and db_noproc_error().