Request the system properties associated with a container.
Request the value of properties that are associated with a stream table.
The following properties can be requested:
derby.storage.streamFileBufferSize
To get the value of a particular property add it to the property list,
and on return the value of the property will be set to it's current
value. For example:
get_prop(ConglomerateController cc)
{
Properties prop = new Properties();
prop.put("derby.storage.streamFileBufferSize", "");
cc.getTableProperties(prop);
System.out.println(
"table's buffer size = " +
prop.getProperty("derby.storage.streamFileBufferSize");
}
Parameters: prop - Property list to fill in. exception: StandardException - Standard exception policy. |