Files
l7/LLightResultSet.cpp

33 lines
612 B
C++
Raw Permalink Normal View History

2018-04-25 20:43:41 +02:00
/*
* File: LLightResultSet.cpp
2022-11-19 16:05:44 +01:00
* Author: Saleem Edah-Tally - nmset@yandex.com
2018-04-25 20:43:41 +02:00
* License : LGPL version 2.1
2022-11-19 16:05:44 +01:00
* Copyright Saleem Edah-Tally, M. D. - © 2014
2018-04-25 20:43:41 +02:00
*
* Created on 28 mai 2014, 14:41
*/
#include "LLightResultSet.h"
LLightResultSet::LLightResultSet()
{
m_initialised = false;
m_curSql = wxEmptyString;
m_cursor = -1;
m_rs = NULL;
m_conn = NULL;
}
LLightResultSet::~LLightResultSet()
{
}
LLightResultSet::LLightResultSet(LConnection* newConnection)
{
m_initialised = false;
m_curSql = wxEmptyString;
m_cursor = -1;
m_rs = NULL;
m_conn = newConnection;
}