|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
Describes the definition of an object
Procedure DESCRIBE
(
NAME VARCHAR2
) ;
| Parameter | Description |
|---|---|
name |
The name of the object to describe. |
The following example illustrate how to call describe:
http.describe('cron_parameters');
--------------------------------------------
CREATE TABLE CRON_PARAMETERS
(
ROW_ID NUMBER(9) not null
, NAME VARCHAR2(30) not null
, VALUE VARCHAR2(4000) null
)