C語言連線oracle例項

2021-08-09 13:14:19 字數 762 閱讀 7378

使用c語言連線oracle資料庫通過proc程式設計連線

test.pc實現的功能是在emp表中查詢資料,通過使用者輸入emp_id,得到對應的emp_name。

test.pc檔案內容如下:

#include 

#include

#include

exec sql include sqlca;

int main()

printf("connect!\n");

printf("please input id:");

scanf("%d",&emp_id);

//查詢語句

exec sql select emp_id , emp_name into :emp_id,:emp_name from emp where emp_id=:emp_id;

printf("name=%s\n", emp_name);

exec sql commit work release;

printf("disconnect!\n");

return

0;}

執行:

proc test.pc

生成test.c檔案

gcc -o test test.c -lclntsh

生成結果:

linux下c語言udp連線例項

created by 冰糖葫蘆的夏天 on 16 7 15.server udp.c include include include include define listenport 12345 定義監聽埠號 define listenip 127.0.0.1 定義監聽ip位址 int main ...

c mysql 例項 C 連線mysql例項

usingsystem usingsystem.configuration usingmysql.data.mysqlclient testdatebase 的摘要說明 public classtestdatebase public static voidmain string args mysql...

C 連線Oracle資料庫的例項方法

1.建立連線字串,裡面包含資料庫名稱 使用者名稱和密碼 2.建立操作字串,裡面是對資料操作的sql語句 3.建立connection,用連線字串作為引數建立 4.建立command,用操作字串和connection作為引數 5.建立dataadapter,用command作為引數 複製 如下 str...