Autodesk FDO Provider for Oracle API Reference

Oracle Provider API

API Reference Autodesk FDO Provider for Oracle

IGetDataStores.h

Go to the documentation of this file.
00001 #ifndef _IGETDATASTORES_H_
00002 #define _IGETDATASTORES_H_
00003 /*
00004 //
00005 // (C) Copyright 1990-2005 by Autodesk, Inc.
00006 //
00007 //
00008 //
00009 // By using this code, you are agreeing to the terms
00010 // and conditions of the License Agreement that appeared
00011 // and was accepted upon download or installation
00012 // (or in connection with the download or installation)
00013 // of the Autodesk software in which this code is included.
00014 // All permissions on use of this code are as set forth
00015 // in such License Agreement provided that the above copyright
00016 // notice appears in all authorized copies and that both that
00017 // copyright notice and the limited warranty and
00018 // restricted rights notice below appear in all supporting
00019 // documentation.
00020 //
00021 // AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
00022 // AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
00023 // MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
00024 // DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
00025 // UNINTERRUPTED OR ERROR FREE.
00026 //
00027 // Use, duplication, or disclosure by the U.S. Government is subject to
00028 // restrictions set forth in FAR 52.227-19 (Commercial Computer
00029 // Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
00030 // (Rights in Technical Data and Computer Software), as applicable.
00031 // 
00032 
00033  *
00034  * Revision Control Modification History
00035  *
00036  *         $Id: //fdo_depot/Providers/Oracle/inc/Fdo/fdo/Rdbms/IGetDataStores.h#1 $
00037  *     $Author: lee $
00038  *   $DateTime: 2007/04/16 11:56:21 $
00039  *     $Change: 15040 $
00040  *
00041  */
00042 #ifdef _WIN32
00043 #pragma once
00044 #endif
00045 
00046 #include "FdoStd.h"
00047 #include "Fdo/Commands/ICommand.h"
00048 #include "Fdo/Connections/IConnection.h"
00049 
00050 
00051 /// \brief
00052 /// This command returns the list of datastores an opened
00053 /// connection can activate.
00054 class FdoIGetDataStores: public FdoICommand
00055 {
00056 
00057 public:
00058     /// \brief
00059     /// Get the list of datastore names.
00060     /// 
00061     /// \return
00062     /// Returns the list of datastores as a FeatureReader.
00063     /// 
00064     FDO_API  virtual FdoArray<FdoString*>* Execute() = 0;
00065 
00066     /// \brief
00067     /// Gets the datastore property name in the connection string.
00068     /// 
00069     /// \return
00070     /// Returns the datastore property name in the connection string.
00071     /// 
00072     FDO_API  virtual FdoString* GetDataStorePropertyName() = 0;
00073 
00074 };
00075 #endif
00076 
00077 

Comments?