ISAPIQRY.H
//-------------------------------------------------------------------- 
// Microsoft OLE DB ISAPI Sample 
// Copyight(c) 1996 Microsoft Corporation.  All Rights Reserved. 
// 
// @doc 
// 
// @module ISAPIQRY.H | header file 
// 
// @rev 1 | 06-11-96 | Created 
 
class CIsapiqryExtension : public CHttpServer 
{ 
public: 
CIsapiqryExtension(); 
~CIsapiqryExtension(); 
 
BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer); 
    LPCTSTR GetTitle(void) const; 
 
    void MainFunction 
      ( 
   CHttpServerContext* pCtxt,     //@param IN | Place where output is directed    
   LPCSTR pstrDSN,                //@param IN | DSN connection name 
   LPCSTR pstrUserName,           //@param IN | User name 
   LPCSTR pstrPassword,           //@param IN | Passwd 
   LPCSTR pstrSQLCommand          //@param IN | SQL Command to executed  
  ); 
 
    DECLARE_PARSE_MAP() 
};