| cache_clear_all | includes/cache-install.inc | |
| cache_get | includes/cache-install.inc | |
| cache_set | includes/cache-install.inc | |
| db_add_field | includes/database.pgsql.inc | Add a new field to a table. |
| db_add_index | includes/database.pgsql.inc | Add an index. |
| db_add_primary_key | includes/database.pgsql.inc | Add a primary key. |
| db_add_unique_key | includes/database.pgsql.inc | Add a unique key. |
| db_affected_rows | includes/database.pgsql.inc | Determine the number of rows changed by the preceding query. |
| db_change_field | includes/database.pgsql.inc | Change a field definition. |
| db_check_setup | includes/database.pgsql.inc | Verify if the database is set up correctly. |
| db_column_exists | includes/database.pgsql.inc | Check if a column exists in the given table. |
| db_connect | includes/database.pgsql.inc | Initialize a database connection. |
| db_create_table_sql | includes/database.pgsql.inc | Generate SQL to create a new table from a Drupal schema definition. |
| db_decode_blob | includes/database.pgsql.inc | Returns text from a Binary Large OBject value.
In case of PostgreSQL decodes data after select from bytea field. |
| db_drop_field | includes/database.pgsql.inc | Drop a field. |
| db_drop_index | includes/database.pgsql.inc | Drop an index. |
| db_drop_primary_key | includes/database.pgsql.inc | Drop the primary key. |
| db_drop_table | includes/database.pgsql.inc | Drop a table. |
| db_drop_unique_key | includes/database.pgsql.inc | Drop a unique key. |
| db_encode_blob | includes/database.pgsql.inc | Returns a properly formatted Binary Large OBject value.
In case of PostgreSQL encodes data for insert into bytea field. |
| db_error | includes/database.pgsql.inc | Determine whether the previous query caused an error. |
| db_escape_string | includes/database.pgsql.inc | Prepare user input for use in a database query, preventing SQL injection attacks.
Note: This function requires PostgreSQL 7.2 or later. |
| db_fetch_array | includes/database.pgsql.inc | Fetch one result row from the previous query as an array. |
| db_fetch_object | includes/database.pgsql.inc | Fetch one result row from the previous query as an object. |
| db_field_set_default | includes/database.pgsql.inc | Set the default value for a field. |
| db_field_set_no_default | includes/database.pgsql.inc | Set a field to have no default value. |
| db_last_insert_id | includes/database.pgsql.inc | Returns the last insert id. This function is thread safe. |
| db_lock_table | includes/database.pgsql.inc | Lock a table.
This function automatically starts a transaction. |
| db_query | includes/database.pgsql.inc | Runs a basic query in the active database. |
| db_query_range | includes/database.pgsql.inc | Runs a limited-range query in the active database. |
| db_query_temporary | includes/database.pgsql.inc | Runs a SELECT query and stores its results in a temporary table. |
| db_rename_table | includes/database.pgsql.inc | Rename a table. |
| db_result | includes/database.pgsql.inc | Return an individual result field from the previous query. |
| db_status_report | includes/database.pgsql.inc | Report database status. |
| db_table_exists | includes/database.pgsql.inc | Check if a table exists. |
| db_type_map | includes/database.pgsql.inc | This maps a generic data type in combination with its data size
to the engine-specific data type. |
| db_unlock_tables | includes/database.pgsql.inc | Unlock all locked tables.
This function automatically commits a transaction. |
| db_version | includes/database.pgsql.inc | Returns the version of the database server currently in use. |
| drupal_discover_template | includes/theme.inc | Choose which template file to actually render. These are all suggested
templates from themes and modules. Theming implementations can occur on
multiple levels. All paths are checked to account for this. |
| drupal_find_theme_functions | includes/theme.inc | Find overridden theme functions. Called by themes and/or theme engines to
easily discover theme functions. |
| drupal_find_theme_templates | includes/theme.inc | Find overridden theme templates. Called by themes and/or theme engines to
easily discover templates. |
| drupal_help_arg | includes/menu.inc | Generates elements for the $arg array in the help hook. |
| drupal_rebuild_theme_registry | includes/theme.inc | Force the system to rebuild the theme registry; this should be called
when modules are added to the system, or when a dynamic system needs
to add more theme hooks. |
| drupal_test_pgsql | includes/install.pgsql.inc | Check if we can connect to PostgreSQL. |
| image_crop | includes/image.inc | Crop an image to the rectangle specified by the given rectangle. |
| image_gd_check_settings | includes/image.gd.inc | Verify GD2 settings (that the right version is actually installed). |
| image_gd_close | includes/image.gd.inc | GD helper to write an image resource to a destination file. |
| image_gd_crop | includes/image.gd.inc | Crop an image using the GD toolkit. |
| image_gd_info | includes/image.gd.inc | Retrieve information about the toolkit. |
| image_gd_open | includes/image.gd.inc | GD helper function to create an image resource from a file. |