TokyoTyrantTable::genUid

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::genUidGenerate unique id

Beskrivelse

public int TokyoTyrantTable::genUid ( void )

Generates an unique id inside the table database. In table databases rows are referenced using a numeric primary key.

Parametre

This function has no parameters.

Returnerings Værdier

Returns an unique id or throws TokyoTyrantException on error

Eksempler

Eksempel #1 TokyoTyrantTable::genUid() example

<?php
$tt 
= new TokyoTyrantTable("localhost"1122);

echo 
$tt->genUid();
?>

The above example will output something similar to:

4

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top