Cassandra\DatatypeIntegrationTests::createTableInsertAndVerifyValueByName PHP Метод

createTableInsertAndVerifyValueByName() публичный Метод

Create a table using $type for the value's type and insert $value using named parameters.
public createTableInsertAndVerifyValueByName ( $type, $value )
$type Cassandra\Type
$value mixed
    public function createTableInsertAndVerifyValueByName($type, $value)
    {
        $key = "key";
        $options = new ExecutionOptions(array('arguments' => array("key" => $key, "value" => $value)));
        $this->createTableInsertAndVerifyValue($type, $options, $key, $value);
    }