Home > Contents > Index >
ICS.CatalogDef
Queries a table for its column definition and stores the results in a list.
Syntax
public IList CatalogDef(String from, String listname, StringBuffer errstr)Parameters
from
- The name of the table.
listname
- List name to present to XML side for processing. The name can be
null
, in which case a unique name is generated.
errstr
- For return values; may contain error information.
Description
The
CatalogDef
method queries a table for its column definition and stores the results in a list. The list contains a row for each column in the table. TheKEY
andFOREIGN
values will be identical for each row in the resultset, since they are table-specific values, rather than column-specific values.Returns
IList object containing the results. The column names of this IList are as follows:
KEY
Name of table's primary key (unknown
if table is foreign).FOREIGN
If table is foreign, value istrue
; otherwise,false
.COLNAME
Name of the column in the table.COLTYPE
Valid values are:text
,integer
,double binary
,date/time
,upload
, orunknown
.COLSIZE
Size of the column based on database information.
Error Numbers
If
IList
isnull
, anerrno
will be set. Useto find the error.
GetErrno
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.