oci连接mysql_OCILIB 连接Oracle数据库——插入数据
二、進階教程
參看官方文檔實例,有詳細的說明,包括:查詢獲取數據、綁定向量、數據庫連接池、12c隱式結果集、使用Oracle對象和數據庫通知等例子。這里只做一個最簡單的插入數據演示。
1、簡單的封裝
void COciUtil::Init()
{
CString strAppPath = CMyFileUtil::GetAppPathW();//獲得程序運行目錄
ostring ociDllPath = CW2A(strAppPath);
try
{
Environment::Initialize(Environment::Default,ociDllPath);
}
catch (std::exception& e)
{
CString text(e.what());
AfxMessageBox(text);
}
}
void COciUtil::Clean()
{
try
{
conn.Close();
Environment::Cleanup();
}
catch (std::exception& e)
{
CString text(e.what());
AfxMessageBox(text);
}
}
BOOL COciUtil::Connect(CString ip,int port,CString serviceName,CString username,CString password)
{
try
{
CString strDB;
strDB.Format(L"%s:%d/%s",ip,port,serviceName);
char* db = CW2A(strDB);
char* user = CW2A(username);
char* pw = CW2A(password);
conn.Open(db,user,pw);
if (conn.IsNull())
return FALSE;
else
return TRUE;
}
catch (std::exception& e)
{
CString text(e.what());
AfxMessageBox(text);
return FALSE;
}
}
2、插入數據庫
這里向數據庫中插入數字、文本、時間、二進制。
BOOL COciDao::InsertTest()
{
try
{
COciUtil oci;
ocilib::Statement st(oci.conn);
st.Prepare("insert into TEST(ID,TEXT,TIME,BIN) values ( :id , :text , :date , :blob )");
int id = 123;
char* binaryText = "eee向天歌浮綠水";
ocilib::Blob blob(oci.conn);
vector list;
list.resize(strlen(binaryText));
for (int i=0;i
{
list.push_back(binaryText[i]);
}
blob.Write(list);
ostring ostr = "texttexttext";
COleDateTime time = COleDateTime::GetCurrentTime();
ocilib::Date date = COleDateTime2Date(time);
st.Bind(":id",id,BindInfo::InOut);
st.Bind(":text",ostr,50,BindInfo::InOut);
st.Bind(":date",date,BindInfo::InOut);
st.Bind(":blob",blob,BindInfo::InOut);
st.ExecutePrepared();
oci.conn.Commit();
oci.Clean();
}
catch (std::exception &e)
{
//cout<
CString text(e.what());
AfxMessageBox(text);
}
}
總結
以上是生活随笔為你收集整理的oci连接mysql_OCILIB 连接Oracle数据库——插入数据的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java标签用法详解_介绍一个javaW
- 下一篇: 增大表名最大长度_风电叶片材料的发展变迁