OracleBFile.DirectoryName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the DIRECTORY object, with which an OracleBFile object is associated.
public:
property System::String ^ DirectoryName { System::String ^ get(); };
public string DirectoryName { get; }
member this.DirectoryName : string
Public ReadOnly Property DirectoryName As String
Property Value
The name of the DIRECTORY object.
Exceptions
Attempted to call DirectoryName
on a closed or disposed OracleBFile
object.
Remarks
Each non-NULL OracleBFile object is associated with two entities that define the location of underlying physical file:
An Oracle DIRECTORY object, which is a database alias for a directory in the file system, and
The file name of the underlying physical file, which is located in the directory associated with the DIRECTORY object.
The DirectoryName property returns the name of the DIRECTORY object from the Oracle database.
For more information about creating and using an Oracle BFILE
, see the appropriate topic in your Oracle documentation.