03 2009 档案

Pro*c中嵌入PL/SQL块
摘要:主要功能是:程序提示用户输入 部门号,然后显示该部门的名字,地址及职员人数。Pro*C中 samplePL_SQL.pc 代码如下: 1 #include <string.h> 2 #include <stdio.h> 3 #include <sqlca.h> 4 5 typedef char asciz; 6 exec sql begin declare section; 7 8 exec sql type asciz is string(20); 9 asciz username[20]; //用户名10 asciz password[20]; ... 阅读全文

posted @ 2009-03-25 14:51 小土泥 阅读(672) 评论(0) 推荐(0) 编辑

批量从数据库是提取数据,并显示出来。
摘要:运行系统 solaris 10数据库 oracle 10gsampleArray.pc内容1 #include <stdio.h>2 #include <string.h>3 #include <sqlca.h>4 #define USERNAME_LEN 20 /*用户名的长度*/5 #define PASSWORD_LEN 20 /*密码长度*/6 #define ARRAY_SIZE 100 /*数组大小*/7 exec sql begin declare section;8 varchar username[USERNAME_LEN];9 varch 阅读全文

posted @ 2009-03-23 11:03 小土泥 阅读(255) 评论(0) 推荐(0) 编辑

导航