-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhk_firebirdview.cpp
54 lines (43 loc) · 1.67 KB
/
hk_firebirdview.cpp
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
// ****************************************************************************
// copyright (c) 2000-2005 Horst Knorr <[email protected]>
// This file is part of the hk_firebirdclasses library.
// This file may be distributed and/or modified under the terms of the
// GNU Library Public License version 2 as published by the Free Software
// Foundation and appearing in the file COPYING included in the
// packaging of this file.
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
//$Revision: 1.1 $
#include "hk_firebirdview.h"
#include "hk_database.h"
hk_firebirdview::hk_firebirdview(hk_firebirddatabase* db,hk_presentation* p)
:hk_firebirddatasource(db,p)
{
}
hk_firebirdview::enum_datasourcetypes hk_firebirdview::type() const
{
return ds_view;
}
bool hk_firebirdview::driver_specific_load_view()
{ cerr <<"driver_specific_load_view: "<<name()<<endl;
hk_string s="select RDB$VIEW_SOURCE AS \"viewselect\" from RDB$RELATIONS where RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR is NOT NULL AND RDB$RELATION_NAME='"+name()+"'";
hk_datasource* r=p_database->new_resultquery();
if (!r) return false;
r->set_sql(s);
r->enable();
hk_column* c=r->column_by_name("viewselect");
if (!c)
{
delete r;
show_warningmessage(hk_translate("View definition could not be loaded"));
return false;
}
s=c->asstring();
hk_string::size_type p=s.find_last_of(';');
if (p!=hk_string::npos) s.replace(p,1,"");
p_viewsql=s;
cerr <<"setze sql="<<c->asstring()<<endl;
delete r;
return true;
}