| java.lang.Object org.apache.derby.impl.io.BaseStorageFactory org.apache.derby.impl.io.CPStorageFactory
CPStorageFactory | public class CPStorageFactory extends BaseStorageFactory (Code) | | This class provides a class path based implementation of the StorageFactory interface. It is used by the
database engine to access persistent data and transaction logs under the classpath subsubprotocol.
|
newPersistentFile | StorageFile newPersistentFile(String path)(Code) | | Construct a persistent StorageFile from a path name.
Parameters: path - The path name of the file A corresponding StorageFile object |
newPersistentFile | StorageFile newPersistentFile(String directoryName, String fileName)(Code) | | Construct a StorageFile from a directory and file name.
Parameters: directoryName - The directory part of the path name. Must not be null, nor may it be in the temp dir. Parameters: fileName - The name of the file within the directory. A corresponding StorageFile object |
newPersistentFile | StorageFile newPersistentFile(StorageFile directoryName, String fileName)(Code) | | Construct a StorageFile from a directory and file name.
Parameters: directoryName - The directory part of the path name. Parameters: fileName - The name of the file within the directory. A corresponding StorageFile object |
|
|