function example_db_column_exists in Coder 7
Same name and namespace in other branches
- 7.2 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')) {
}
}