public interface CreateLike
TEMP-TABLEs and DATASETs
structures.| Modifier and Type | Method and Description |
|---|---|
logical |
createLike(character tableName)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical |
createLike(character tableName,
character indexName)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical |
createLike(handle hbuf)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical |
createLike(handle hbuf,
character indexName)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical |
createLike(handle hbuf,
java.lang.String indexName)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical |
createLike(java.lang.String tableName)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical |
createLike(java.lang.String tableName,
java.lang.String indexName)
Duplicates the structure of an existing table, copying the field definitions, and
optionally, the indexes.
|
logical createLike(handle hbuf)
CREATE-LIKE method of Progress 4GL.hbuf - A handle to a buffer or table from which to copy the definitions.true on success.logical createLike(java.lang.String tableName)
CREATE-LIKE method of Progress 4GL.tableName - The name of a table to create the copy of.true on success.logical createLike(character tableName)
CREATE-LIKE method of Progress 4GL.tableName - The name of a table to create the copy of.true on success.logical createLike(handle hbuf, java.lang.String indexName)
CREATE-LIKE method of Progress 4GL.hbuf - A handle to a buffer or table from which to copy the definitions.indexName - The name of a single index which is copied from the source table.true on success.logical createLike(handle hbuf, character indexName)
CREATE-LIKE method of Progress 4GL.hbuf - A handle to a buffer or table from which to copy the definitions.indexName - The name of a single index which is copied from the source table.true on success.logical createLike(java.lang.String tableName, java.lang.String indexName)
CREATE-LIKE method of Progress 4GL.tableName - The name of a table to create the copy of.indexName - The name of a single index which is copied from the source table.true on success.logical createLike(character tableName, character indexName)
CREATE-LIKE method of Progress 4GL.tableName - The name of a table to create the copy of.indexName - The name of a single index which is copied from the source table.true on success.