首页 > 开发 > 综合 > 正文

SQL循序渐进(24)嵌入SQL

2024-07-21 02:12:38
字体:
来源:转载
供稿:网友

嵌入sql

为了更好的理解嵌入sql,本节利用一个具体例子来说明。嵌入sql允许程序连接数据库并且包括sql代码到程序中,这样在程序中就可以对数据库进行使用、操作以及处理数据等等。以下是用c语言编写的使用嵌入sql的例程,它将打印一个报告;这个程序必须在普通的编译之前先预编译sql语句。嵌入sql对于不同系统是不一样的,所以在不同的系统中对以下的程序稍作修改,特别是变量的声明以及过程记录等。在嵌入sql时,考虑网络、数据库管理系统、操作系统是相当重要的。

以下是详细的代码:

#include <stdio.h>

/* 以下这部分是声明主机变量,它将使用于程序中*/

exec sql begin declare section;

int buyerid;

char firstname[100], lastname[100], item[100];

exec sql end declare section;


/* 以下包括sqlca变量,它可以用来进行错误检查 */

exec sql include sqlca;

main() {

/* 以下连接数据库*/

exec sql connect userid/password;

/* 以下是连接数据库并检查是否有错误产生t */ if(sqlca.sqlcode) {

printf(printer, "error connecting to database server./n");

exit();

}

printf("connected to database server./n");

/* 下面声明一个 "cursor"。它将在查询结果多于一行的时候使用*/

exec sql declare itemcursor cursor for

select item, buyerid

from antiques

order by item;

exec sql open itemcursor;

/* 你可以在这里还可以加入另外一些错误检查的内容,这里就省略了*/

/* 当这个cursor没有数据, sqlcode将被产生以允许我们退出循环。这里注意,为了简单起见,我们使程序遇到错误的时候就退出任何的sqlcode。*/

exec sql fetch itemcursor into :item, :buyerid;

while(!sqlca.sqlcode) {

exec sql update antiques

set price = price + 5

where item = :item and buyerid = :buyerid;

exec sql select ownerfirstname, ownerlastname

into :firstname, :lastname

from antiqueowners

where buyerid = :buyerid;

printf("%25s %25s %25s", firstname, lastname, item);


exec sql fetch itemcursor into :item, :buyerid;

}

/* 关闭cursor,提交变化并退出程序。*/

exec sql close datacursor;

exec sql commit release;

exit();

}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表