| java.lang.Object org.apache.derbyTesting.functionTests.util.TestPropertyInfo
TestPropertyInfo | public class TestPropertyInfo (Code) | | This class extends PropertyInfo to provide support for viewing ALL
table/index properties, not just the user-visible ones.
|
Method Summary | |
public static Properties | filter(Properties p, String filterMe) Return the passed in Properties object with a property filtered out. | public static String | getAllIndexProperties(String schemaName, String indexName) Get ALL the Properties associated with a given index, not just the customer-visible ones.
Parameters: schemaName - The name of the schema that the index is in. Parameters: indexName - The name of the index. | public static String | getAllTableProperties(String schemaName, String tableName) Get ALL the Properties associated with a given table, not just the
customer-visible ones.
Parameters: schemaName - The name of the schema that the table is in. Parameters: tableName - The name of the table. | public static String | getTableProperty(String schemaName, String tableName, String key) Get a specific property associated with a given table, not just the
customer-visible ones. |
filter | public static Properties filter(Properties p, String filterMe)(Code) | | Return the passed in Properties object with a property filtered out.
This is useful for filtering system depenent properties to make
test canons stable.
|
getAllIndexProperties | public static String getAllIndexProperties(String schemaName, String indexName) throws java.sql.SQLException(Code) | | Get ALL the Properties associated with a given index, not just the customer-visible ones.
Parameters: schemaName - The name of the schema that the index is in. Parameters: indexName - The name of the index. Properties The Properties associated with the specified index.(An empty Properties is returned if the index does not exist.) exception: java.sql.SQLException - thrown on error |
getAllTableProperties | public static String getAllTableProperties(String schemaName, String tableName) throws java.sql.SQLException(Code) | | Get ALL the Properties associated with a given table, not just the
customer-visible ones.
Parameters: schemaName - The name of the schema that the table is in. Parameters: tableName - The name of the table. Properties The Properties associated with the specified table.(An empty Properties is returned if the table does not exist.) exception: java.sql.SQLException - thrown on error |
getTableProperty | public static String getTableProperty(String schemaName, String tableName, String key) throws java.sql.SQLException(Code) | | Get a specific property associated with a given table, not just the
customer-visible ones.
Parameters: schemaName - The name of the schema that the table is in. Parameters: tableName - The name of the table. Parameters: key - The table property to retrieve Property value exception: java.sql.SQLException - thrown on error |
|
|