function DatabaseBasicSyntaxTestCase::testFieldConcat

Test for string concatenation with field values.

File

modules/simpletest/tests/database_test.test, line 3411

Class

DatabaseBasicSyntaxTestCase
Test how the current database driver interprets the SQL syntax.

Code

function testFieldConcat() {
    $result = db_query('SELECT CONCAT(:a1, CONCAT(name, CONCAT(:a2, CONCAT(age, :a3)))) FROM {test} WHERE age = :age', array(
        ':a1' => 'The age of ',
        ':a2' => ' is ',
        ':a3' => '.',
        ':age' => 25,
    ));
    $this->assertIdentical($result->fetchField(), 'The age of John is 25.', 'Field CONCAT works.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.