function SchemaTestCase::tryUnsignedInsert
Tries to insert a negative value into columns defined as unsigned.
Parameters
$table_name: The table to insert
$column_name: The column to insert
Return value
TRUE if the insert succeeded, FALSE otherwise
1 call to SchemaTestCase::tryUnsignedInsert()
- SchemaTestCase::testUnsignedColumns in modules/
simpletest/ tests/ schema.test - Tests creating unsigned columns and data integrity thereof.
File
-
modules/
simpletest/ tests/ schema.test, line 211
Class
- SchemaTestCase
- Unit tests for the Schema API.
Code
function tryUnsignedInsert($table_name, $column_name) {
try {
db_insert($table_name)->fields(array(
$column_name => -1,
))
->execute();
return TRUE;
} catch (Exception $e) {
return FALSE;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.