1. 程式人生 > >【190104】VC++ Oracle資料庫進行大資料查詢原始碼

【190104】VC++ Oracle資料庫進行大資料查詢原始碼

原始碼下載簡介

VC++應用Oracle資料庫進行大資料查詢,包括儲存過程、分頁查詢,使用注意事項:
  1,先建立mytable表:
  create table mytable(empno, ename, job, mgr, sal, comm, deptno) as select empno, ename, job, mgr, sal, comm, deptno from emp;
  insert into mytable select *from mytable;
  
  2,登入system/manager,給scott授權:
  grant create any table,create any procedure to scott;
  
  解釋:oracle在過程中許可權有特殊的控制,必須要有獨立的許可權,如要CREATE TABLE語句,就要有獨立的CREATE TABLE許可權,必須GRANT CREATE TABLE TO USEr

原始碼下載地址:點選下載

備用下載地址:點選下載