?? occiph.h
字號:
// OCCIPH.h: interface for the OCCIPH class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_OCCIPH_H__6A43E30A_25F8_40C4_939E_3130B7BCA23F__INCLUDED_)
#define AFX_OCCIPH_H__6A43E30A_25F8_40C4_939E_3130B7BCA23F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <iostream.h>
#include <occi.h>
using namespace oracle::occi;
using namespace std;
class OCCIPH
{
private:
Environment *env;
Connection *con;
BOOL flag_success;//具有TRUE、FALSED兩個值,
//TRUE表示數據庫操作成功,
//FALSE表示數據庫操作失敗
public:
// Function to call a PL/SQL procedure
BOOL callproc (string str_plsql);
// Function to call a PL/SQL function
void callfun ();
public:
//建立數據庫連接
OCCIPH(string user, string passwd, string db);
virtual ~OCCIPH();
};
#endif // !defined(AFX_OCCIPH_H__6A43E30A_25F8_40C4_939E_3130B7BCA23F__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -