Description. This method is used to associate the datafile with a tablespace.
Signatures.
setTablespace() can be invoked with either
the name of the tablespace, as shown here:
void setTablespace
(
const char* name
)
Or with a reference to a Tablespace object.
void setTablespace
(
const class Tablespace& tablespace
)
Parameters. This method takes a single parameter, which can be either one of the following:
The name of the tablespace
(as a character pointer).
A reference tablespace to the
corresponding Tablespace object.
Return Value. None.
