configlib/dbmsjdbc/src/native/DbmsStatement.h
author Bob Rosenberg <bob.rosenberg@nokia.com>
Wed, 13 Oct 2010 16:21:25 +0100
changeset 7 3c36c452f013
parent 1 b538b70cbe51
permissions -rw-r--r--
Version 2.0 release of System Model Generator, which draws 3.x syntax system definition files

// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

#ifndef __DbmsStatement_h__
#define __DbmsStatement_h__
#include <e32std.h>
#include <d32dbms.h>
#include "DbmsConnection.h"


class DbmsStatement {

public:
	DbmsConnection* iConnection;
	RDbView 		iView;
	
public:
	DbmsStatement(DbmsConnection* aConnection);
	~DbmsStatement();
	void Close();
};

#endif