1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2012, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
#include "pgscript/statements/pgsPrintStmt.h"
#include "pgscript/exceptions/pgsException.h"
#include "pgscript/utilities/pgsThread.h"
#include "pgscript/utilities/pgsUtilities.h"
pgsPrintStmt::pgsPrintStmt(const pgsExpression *var, pgsOutputStream &cout,
pgsThread *app) :
pgsStmt(app), m_var(var), m_cout(cout)
{
}
pgsPrintStmt::~pgsPrintStmt()
{
pdelete(m_var);
}
void pgsPrintStmt::eval(pgsVarMap &vars) const
{
if (m_app != 0)
{
m_app->LockOutput();
}
try
{
m_cout << PGSOUTPGSCRIPT << wx_static_cast(const wxString,
m_var->eval(vars)->value()) << wxT("\n");
}
catch (const pgsException &)
{
if (m_app != 0)
{
m_app->UnlockOutput();
}
throw;
}
if (m_app != 0)
{
m_app->UnlockOutput();
}
}
|