Difference between revisions of "Database Table: persistent queue"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'persistent_queue =Definition= <source lang="sql"> CREATE TABLE persistent_queue ( qkey VARCHAR(255) NOT NULL, idx INTEGER UNSIGNED NOT NULL, va...')
(No difference)

Revision as of 17:37, 22 March 2009

Definition

CREATE TABLE persistent_queue (
  qkey VARCHAR(255) NOT NULL,
  idx INTEGER UNSIGNED NOT NULL,
  VALUE BLOB,
  PRIMARY KEY (qkey, idx)
)

Relationships

Location

Global database