step1.cpp

来自「SQLAPI C/C++ 连接Oracle 数据库!」· C++ 代码 · 共 48 行

CPP
48
字号
#include <stdio.h>  // for printf#include <SQLAPI.h> // main SQLAPI++ headerint main(int argc, char* argv[]){    SAConnection con; // create connection object        try    {        // connect to database        // in this example it is Oracle,        // but can also be Sybase, Informix, DB2        // SQLServer, InterBase, SQLBase and ODBC        con.Connect(            "test",     // database name            "tester",   // user name            "tester",   // password            SA_Oracle_Client);        printf("We are connected!\n");        // Disconnect is optional        // autodisconnect will ocur in destructor if needed        con.Disconnect();        printf("We are disconnected!\n");    }    catch(SAException &x)    {        // SAConnection::Rollback()        // can also throw an exception        // (if a network error for example),        // we will be ready        try        {            // on error rollback changes            con.Rollback();        }        catch(SAException &)        {        }        // print error message        printf("%s\n", (const char*)x.ErrText());    }        return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?