登录
首页 » 数据结构 » 连接到Oracle数据库从Fortran代码

连接到Oracle数据库从Fortran代码

于 2022-12-03 发布 文件大小:1.75 MB
0 166
下载积分: 2 下载次数: 1

代码说明:

从fortran编译器生成的exe文件连接ORACLE DB的示例代码。本程序通过oracleserver8.05和9i测试,使用了一些表中的数据。需要Oracle TNS名称文件进行连接。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 电梯模拟系统,电梯端和管理员端通过网络连接
    电梯模拟系统,电梯端和管理员端通过网络连接-Elevator simulation system, elevator client and the administrator client through a network connection
    2022-02-04 12:26:49下载
    积分:1
  • 得到中文的汉语拼音
    得到中文的汉语拼音-be Chinese pinyin system
    2022-07-13 19:20:56下载
    积分:1
  • algorithms and data structures, C
    算法与数据结构,C语言版严蔚敏,清华大学出版社-algorithms and data structures, C-language version of Yan Wei Min, Qinghua University Press
    2022-04-02 08:39:03下载
    积分:1
  • 射击运动员10发打中90环有多少种可能,递归算法
    射击运动员10发打中90环有多少种可能,递归算法-shooting 10 athletes hit the number 90 ring possible, recursive algorithm
    2022-02-20 19:14:53下载
    积分:1
  • 这些都是金典的c语言的例子,是语言学习者的必备
    这些都是金典的c语言的例子,是语言学习者的必备-These are the c language examples of the sort of language learners
    2022-01-25 17:53:34下载
    积分:1
  • vc库编程程序
    vc数据库编程程序-vc procedures Database Programming
    2023-06-13 10:15:03下载
    积分:1
  • 实现了银行家算法,操作系统课程设计时编写的,能够成功运行...
    实现了银行家算法,操作系统课程设计时编写的,能够成功运行-The banker" s algorithm implementation, the operating system designed to prepare the curriculum, be able to run successfully
    2022-01-25 16:56:53下载
    积分:1
  • 自己帮家里人写的一个废品收购管理库系统,库用的access,界面用的VC...
    自己帮家里人写的一个废品收购管理数据库系统,数据库用的access,界面用的VC-To help people write their own home to buy a waste management database system, the database used access, interface with the VC
    2022-09-13 21:15:03下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • 像小卡片一样的日历,包括星期
    像小卡片一样的日历,包括星期-like small cards the same calendar, including the week
    2022-10-25 04:10:03下载
    积分:1
  • 696516资源总数
  • 106432会员总数
  • 11今日下载