You are here

function example_db_column_exists in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/tests/old/samples/example.module \example_db_column_exists()

File

coder_upgrade/tests/old/samples/example.module, line 566

Code

function example_db_column_exists() {
  $ret = db_column_exists('table', 'field');
  $ret = db_column_exists($table, $field);
  if ($ret = db_column_exists('table', 'field')) {
  }
}