我正在将一些带有嵌入式 SQL 的 C++ 代码移植到带有 oracle 数据库的 linux 服务器中。
数据访问对象是 C++ 类,提供 .select() .insert() .findByPrimaryKey() 等数据库交互方法。
这是 testdao.h 头文件。
class TestDAO
{
private:
EXEC SQL BEGIN DECLARE SECTION;
int hv_col1;
int hv_col2;
.. .. upto 20 host variables ...
EXEC SQL END DECLARE SECTION;
public:
testObj* select();
bool insert(testObj);
testObj* findByPrimaryKey(primaryKeyObj);
}
这是 testdao.ecpp 文件
class TestDAO::select()
{
... select into hostvariables hv_col1, hv_col2 ..
... copy hostvariables data into object ...
}
class TestDAO::insert(testObj)
{
... copy data from the testObj into hostvariables ...
... EXEC SQL INSERT using hostvariales ...
}
class TestDAO::findByPrimaryKey(primaryKeyObj)
{
... copy primaryKeyObj data into hostvariables ...
... EXEC SQL SELECT where primary key ..
}
Oracle pro*C 预编译器无法处理头文件中的 EXEC SQL。如何声明主机变量,以便不必在每个方法中重复声明它们?
我不能将它们作为全局变量。