免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2545 | 回复: 2
打印 上一主题 下一主题

[C++] 用过OCCI的进来解答啊。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-07-07 16:36 |只看该作者 |倒序浏览
我运行demo的一段程序OCCI方式连接TimesTen11.2数据库,运行结果如下: 。不知道是否正确啊,貌似不对~~

论坛徽章:
0
2 [报告]
发表于 2011-07-07 16:38 |只看该作者
源程序如下:
#include <iostream>
#include <occi.h>
using namespace oracle:cci;
using namespace std;

class  test
{
  private:

  Environment *env;
  Connection *conn;
  Statement *stmt;
  public:

  test (string user, string passwd, string db)
  {
    env = Environment::createEnvironment (Environment:EFAULT);
    conn = env->createConnection (user, passwd, db);
  }

  ~test ()
  {
    env->terminateConnection (conn);
    Environment::terminateEnvironment (env);
  }
/***insert***/
void insertRow ()
  {
    string sqlStmt = "INSERT INTO author_tab VALUES (001, 'first')";
    stmt = conn->createStatement (sqlStmt);
    try{
    stmt->executeUpdate ();
    cout << "insert - Success!" << endl;
    }catch(SQLException ex)
    {
     cout<<"Exception thrown for insertRow"<<endl;
     cout<<"Error number: "<<  ex.getErrorCode() << endl;
     cout<<ex.getMessage() << endl;
    }

    conn->terminateStatement (stmt);
  }
/***delete***/
void deleteRow (int c1, string c2)
  {
    string sqlStmt =
      "DELETE FROM author_tab WHERE author_id= AND author_name = :y";
    stmt = conn->createStatement (sqlStmt);
    try{
    stmt->setInt (1, c1);
    stmt->setString (2, c2);
    stmt->executeUpdate ();
    cout << "delete - Success" << endl;
    }catch(SQLException ex)
    {
     cout<<"Exception thrown for deleteRow"<<endl;
     cout<<"Error number: "<<  ex.getErrorCode() << endl;
     cout<<ex.getMessage() << endl;
    }

    conn->terminateStatement (stmt);
  }
/***update***/
void updateRow (int c1, string c2)
  {
    string sqlStmt =
      "UPDATE author_tab SET author_name = WHERE author_id = :y";
    stmt = conn->createStatement (sqlStmt);
    try{
    stmt->setString (1, c2);
    stmt->setInt (2, c1);
    stmt->executeUpdate ();
    cout << "update - Success" << endl;
    }catch(SQLException ex)
    {
     cout<<"Exception thrown for updateRow"<<endl;
     cout<<"Error number: "<<  ex.getErrorCode() << endl;
     cout<<ex.getMessage() << endl;
    }

    conn->terminateStatement (stmt);
  }
/***displey***/
void displayAllRows ()
  {
    string sqlStmt = "SELECT author_id, author_name FROM author_tab \
    order by author_id";
    stmt = conn->createStatement (sqlStmt);
    ResultSet *rset = stmt->executeQuery ();
    try{
    while (rset->next ())
    {
      cout << "author_id: " << rset->getInt (1) << "  author_name: "
        << rset->getString (2) << endl;
    }
    }catch(SQLException ex)
    {
     cout<<"Exception thrown for displayAllRows"<<endl;
     cout<<"Error number: "<<  ex.getErrorCode() << endl;
     cout<<ex.getMessage() << endl;
    }

    stmt->closeResultSet (rset);
    conn->terminateStatement (stmt);
  }
};//end test
/***main***/
int main (void)
{
string user="ttadmin";
string passwd="ttadmin";
string db ="";
try{
  cout << "Test - Exhibiting simple insert, delete & update operations"
       << endl;
  test *demo = new test (user, passwd, db);
cout << "Displaying all records before any operation" << endl;
  demo->displayAllRows ();

cout << "Inserting a record into the table author_tab "
    << endl;
  demo->insertRow ();

cout << "deleting a row with author_id as 222 from author_tab table" << endl;
  demo->deleteRow (01, "first";

cout << "updating a row with author_id as 444 from author_tab table" << endl;
  demo->updateRow (02, "new";

cout << "Displaying all records again" << endl;
  demo->displayAllRows ();

delete (demo);
  }
  catch (SQLException ex){
    cout << ex.getMessage() << endl;
  }
  cout << "Test - done" << endl;
}
求高手解答!非常感谢!小弟刚入门~

论坛徽章:
0
3 [报告]
发表于 2011-07-07 16:38 |只看该作者
提示很明显啊,你的tns名指定错了。

string db ="";
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP