pgsql and adodb's genID() for unique id sequence...

Поиск
Список
Период
Сортировка
От
Тема pgsql and adodb's genID() for unique id sequence...
Дата
Msg-id 20050202202151.39267.qmail@web52404.mail.yahoo.com
обсуждение исходный текст
Ответы Re: pgsql and adodb's genID() for unique id sequence...  (<operationsengineer1@yahoo.com>)
Re: pgsql and adodb's genID() for unique id sequence...  (Mitch Pirtle <mitch.pirtle@gmail.com>)
Список pgsql-novice
does anybody use this technique?  it is supported by
pgsql, however, setting it up isn't intuitive to this
newbie.

-------------------------

http://phplens.com/lens/adodb/tips_portable_sql.htm

When you create records, you need to generate unique
id's for each record. There are two common techniques:
(1) auto-incrementing columns and (2) sequences.

Auto-incrementing columns are supported by MySQL,
Sybase and Microsoft Access and SQL Server. However
most other databases do not support this feature. So
for portability, you have little choice but to use
sequences. Sequences are special functions that return
a unique incrementing number every time you call it,
suitable to be used as database keys. In ADOdb, we use
the GenID( ) function. It has takes a parameter, the
sequence name. Different tables can have different
sequences.

$id = $connection->GenID('sequence_name');
$connection->Execute("insert into table (id,
firstname, lastname) values ($id, $firstname,
$lastname)");

For databases that do not support sequences natively,
ADOdb emulates sequences by creating a table for every
sequence.

-----------------------

i'm left wondering if i need to create a sequence
table with name 'sequence_name' before this technique
will work.  or, rather, is it just a name i need to
plug in to uniquely identify a particular sequence
controlled by the function?

i'm sorry this is 50% off topic (adodb) and 50% on
topic (pqsql).

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

В списке pgsql-novice по дате отправления:

Предыдущее
От: "Rodolfo J. Paiz"
Дата:
Сообщение: Re: some help
Следующее
От:
Дата:
Сообщение: Re: pgsql and adodb's genID() for unique id sequence...