configlib/dbmsjdbc/src/native/DbmsStatement.h
changeset 1 b538b70cbe51
equal deleted inserted replaced
0:2e8eeb919028 1:b538b70cbe51
       
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __DbmsStatement_h__
       
    17 #define __DbmsStatement_h__
       
    18 #include <e32std.h>
       
    19 #include <d32dbms.h>
       
    20 #include "DbmsConnection.h"
       
    21 
       
    22 
       
    23 class DbmsStatement {
       
    24 
       
    25 public:
       
    26 	DbmsConnection* iConnection;
       
    27 	RDbView 		iView;
       
    28 	
       
    29 public:
       
    30 	DbmsStatement(DbmsConnection* aConnection);
       
    31 	~DbmsStatement();
       
    32 	void Close();
       
    33 };
       
    34 
       
    35 #endif