TokyoTyrantTable::putKeep
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrantTable::putKeep — Put a new record
Описание
public void TokyoTyrantTable::putKeep
( string
$key
, array $columns
)Puts a new record into the database. If the key already exists this method throws an exception indicating that the records exists.
Список параметров
-
key
-
The primary key of the row or
NULL
-
columns
-
Array of the row contents
Возвращаемые значения
Returns the primary key and throws TokyoTyrantException on error.
Примеры
Пример #1 TokyoTyrantTable::putKeep() example
<?php
/* Connect to a table database */
$tt = new TokyoTyrantTable("localhost", 1979);
/* Passing null to put generates a new uid */
$index = $tt->put(null, array("column1" => "some data", "column2" => "more data"));
/* Get the row back */
var_dump($tt->get($index));
try {
$tt->putKeep($index, array("column1" => "something new", "new_column" => "other data"));
} catch (TokyoTyrantException $e) {
if ($e->getCode() === TokyoTyrant::TTE_KEEP) {
echo "Existing record! Not modified\n";
} else {
echo "Error: " , $e->getMessage() , "\n";
}
}
/* Get the row back */
var_dump($tt->get($index));
?>
Результатом выполнения данного примера будет что-то подобное:
array(2) { ["column1"]=> string(9) "some data" ["column2"]=> string(9) "more data" } Existing record! Not modified array(2) { ["column1"]=> string(9) "some data" ["column2"]=> string(9) "more data" }
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с базами данных
- Расширения для работы с базами данных отдельных производителей
- tokyo_tyrant
- Функция TokyoTyrantTable::add() - Adds a record
- Функция TokyoTyrantTable::genUid() - Generate unique id
- Функция TokyoTyrantTable::get() - Get a row
- Функция TokyoTyrantTable::getIterator() - Get an iterator
- Функция TokyoTyrantTable::getQuery() - Get a query object
- Функция TokyoTyrantTable::out() - Remove records
- Функция TokyoTyrantTable::put() - Store a row
- Функция TokyoTyrantTable::putCat() - Concatenates to a row
- Функция TokyoTyrantTable::putKeep() - Put a new record
- Функция TokyoTyrantTable::putNr() - Puts value
- Функция TokyoTyrantTable::putShl() - Concatenates to a record
- Функция TokyoTyrantTable::setIndex() - Sets index
Коментарии
404 Not Found