Oracle9iAS Portal Developer Kit

cookie_record record structure and table

In the wwpro_api_provider API package, the cookie_record contains cookie details provided during login.

The cookie_record record structure is:

type cookie_record is record

(

cookie_name varchar2(4096),

cookie_content varchar2(4096),

cookie_domain varchar2(200),

cookie_path varchar2(200),

cookie_expires date,

cookie_update boolean,

provider_id integer

);

Version: Oracle Portal 3.0.6.6.5 or later

Field names and definitions

cookie_name

The name of the cookie.

Datatype: varchar2

cookie_content

The value or content of the cookie.

Datatype: varchar2

cookie_domain

The domain the cookie was created for.

Datatype: varchar2

cookie_path

The URL path within which the cookie is valid.

Datatype: varchar2

cookie_expires

The date and time that the cookie expires.

Datatype: date

cookie_update

For internal use only.

provider_id

For internal use only.

Cookie table

The cookie table is a table structure that contains a list of cookies.

type cookie_table is table of cookie_record index by binary_integer;

Note

A cookie is a set of data that a Web site sends to a browser when a user visits the site.

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio