Same name in this branch
  1. 6.x includes/database.pgsql.inc \_db_process_field()
  2. 6.x includes/database.mysql-common.inc \_db_process_field()

Set database-engine specific properties for a field.

Parameters

$field: A field description array, as specified in the schema documentation.

Related topics

5 calls to _db_process_field()
db_add_field in includes/database.mysql-common.inc
Add a new field to a table.
db_add_field in includes/database.pgsql.inc
Add a new field to a table.
db_change_field in includes/database.mysql-common.inc
Change a field definition.
db_create_table_sql in includes/database.mysql-common.inc
Generate SQL to create a new table from a Drupal schema definition.
db_create_table_sql in includes/database.pgsql.inc
Generate SQL to create a new table from a Drupal schema definition.

File

includes/database.mysql-common.inc, line 135
Functions shared between mysql and mysqli database engines.

Code

function _db_process_field($field) {
  if (!isset($field['size'])) {
    $field['size'] = 'normal';
  }

  // Set the correct database-engine specific datatype.
  if (!isset($field['mysql_type'])) {
    $map = db_type_map();
    $field['mysql_type'] = $map[$field['type'] . ':' . $field['size']];
  }
  if ($field['type'] == 'serial') {
    $field['auto_increment'] = TRUE;
  }
  return $field;
}