免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1604 | 回复: 2
打印 上一主题 下一主题

求助!关于oracle下的编程 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-05-30 09:03 |只看该作者 |倒序浏览
操作系统是SCO 5.0.5,我想通过代码实现对oracle表中数据的添加,修改,删除,查询,使用c还是shell,最好给一个实例!万分感谢!!!

论坛徽章:
0
2 [报告]
发表于 2004-05-30 11:05 |只看该作者

求助!关于oracle下的编程

这个叫 Pro*C 程序.
参考 Pro*C 编程.
http://www.itdba.com/forum_view.asp?forum_id=34&view_id=249


Pro*c 简单实例
/*
*        filename:model.pc
*        author:alamo
*        inc:sinosoft
*        create time:2001.3.24
*        update time:
*        desc:it is a model file for write pro*c programe for oracle+tuxedo
*/

#include <stdio.h>;
#include <string.h>;
#include <stdlib.h>;
#include <sqlda.h>;
#include <sqlcpr.h>;
#include <atmi.h>;
#include <fml.h>;
#include <userlog.h>;

/* set pro*c operation */
exec sql include sqlca;
exec sql include oraca;
exec oracle option (oraca=yes);

/* Define constants for VARCHAR lengths. */
#define     UNAME_LEN      20
#define     PWD_LEN        40

/* Declare variables.  No declare section is
  needed if MODE=ORACLE. */
VARCHAR     username[UNAME_LEN];  /* VARCHAR is an Oracle-supplied struct */
varchar     password[PWD_LEN];    /* varchar can be in lower case also. */

/* Declare error handling function. */
void sql_error(msg)
   char *msg;
{
   char err_msg[128];
   size_t buf_len, msg_len;

   EXEC SQL WHENEVER SQLERROR CONTINUE;

   printf("
%s
", msg);
   buf_len = sizeof (err_msg);
   sqlglm(err_msg, &buf_len, &msg_len);
   printf("%.*s
", msg_len, err_msg);

   EXEC SQL ROLLBACK RELEASE;
   exit(EXIT_FAILURE);
}

void main()
{

/* Connect to ORACLE--
* Copy the username into the VARCHAR.
*/
   strncpy((char *) username.arr, "sgac_dec", UNAME_LEN);

/* Set the length component of the VARCHAR. */
   username.len =
     (unsigned short) strlen((char *) username.arr);

/* Copy the password. */
   strncpy((char *) password.arr, "dbwork", PWD_LEN);
   password.len =
     (unsigned short) strlen((char *) password.arr);

/* Register sql_error() as the error handler. */
   EXEC SQL WHENEVER SQLERROR DO sql_error("ORACLE error--
";

/* Connect to ORACLE.  Program will call sql_error()
* if an error occurs when connecting to the default database.
*/
   EXEC SQL CONNECT :username IDENTIFIED BY :password;

   printf("
Connected to ORACLE as user: %s
", username.arr);

/* Disconnect from ORACLE. */
   EXEC SQL ROLLBACK WORK RELEASE;
   exit(EXIT_SUCCESS);
}

论坛徽章:
0
3 [报告]
发表于 2004-05-30 11:46 |只看该作者

求助!关于oracle下的编程

这个c程序怎样编译???并且数据库的用户名及密码在那验证???
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP