免费注册 查看新帖 |

Chinaunix

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

[函数] 寻找关于db library 函数的资料,谢谢 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-10-13 09:41 |只看该作者 |倒序浏览
小弟,最近在学习基于数据库的C程序设计,在学习别人的代码时遇到一些函数,如:dbcmd,dbsettime,dbsqlexec,不知在那能找到有关这类函数的介绍,请高手推荐些资料,谢谢

论坛徽章:
0
2 [报告]
发表于 2004-10-13 12:52 |只看该作者

寻找关于db library 函数的资料,谢谢

帮帮小弟呀

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
3 [报告]
发表于 2004-10-13 12:57 |只看该作者

寻找关于db library 函数的资料,谢谢

看 MS SQL SERVER 或者 SYBASE SQL SERVER 的 samples

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2004-10-13 13:00 |只看该作者

寻找关于db library 函数的资料,谢谢

  1. D:\MSSQL7\DevTools\Samples\dblib\c\example8\examples.c
复制代码

  1. /* ** The example uses the following stored procedure,
  2. ** named "rpctest", which it assumes is located in the
  3. ** user's default database. Before running this example,
  4. ** you must create "rpctest" in your default database.
  5. **
  6. **     create procedure rpctest
  7. **         (@param1 int out,
  8. **          @param2 int out,
  9. **          @param3 int out,
  10. **          @param4 int)
  11. **     as
  12. **     begin
  13. **         select "rpctest is running."
  14. **         select @param1 = 11
  15. **         select @param2 = 22
  16. **         select @param3 = 33
  17. **         select @param1
  18. **
  19. **         return 123
  20. **     end
  21. **
  22. */

  23. #if defined(DBNTWIN32)
  24. #include <windows.h>;
  25. #endif

  26. #include <stdio.h>;
  27. #include <stdlib.h>;
  28. #include <sqlfront.h>;
  29. #include <sqldb.h>;
  30. #define FMTSTR    "%-8.8s %-8.8s %-8.8s %-8.8s\n"
  31. #define FMTSTR1    "%-8.8s %-8.8s %8.8ld %8.8ld\n"

  32. /* Forward declarations of the error handler and message handler routines. */
  33. int err_handler(DBPROCESS*, int, int, int, char*, char*);
  34. int msg_handler(DBPROCESS*, DBINT, int, int, char*, char*, char*, DBUSMALLINT);

  35. void main()
  36. {
  37.         LOGINREC         *login;
  38.         DBPROCESS        *dbproc;
  39.        
  40.         int              i;
  41.         int              numrets;
  42.         DBINT            param1 = 1;
  43.         DBINT            param2 = 2;
  44.         DBINT            param3 = 3;
  45.         DBINT            param4 = 4;
  46.         RETCODE          return_code;

  47.           /* Initialize private DB Library structures. */
  48.         dbinit();


  49.         /* Install the user-supplied error-handling and message-handling
  50.          * routines. They are defined at the bottom of this source file.
  51.          */

  52.         dbmsghandle((DBMSGHANDLE_PROC)msg_handler);
  53.         dberrhandle((DBERRHANDLE_PROC)err_handler);

  54.         /* Allocate and initialize the LOGINREC structure to be used
  55.          * to open a connection to SQL Server.
  56.          */

  57.         login = dblogin( );
  58.         DBSETLUSER(login, "user");
  59.         DBSETLPWD(login, "my_passwd");
  60.         DBSETLAPP(login, "rpcexample");
  61.         DBSETLVERSION(login, DBVER60);

  62.         dbproc = dbopen(login, (char *)"my_server");

  63.         /* Make the rpc. */
  64.         if (dbrpcinit(dbproc, "rpctest", (DBSMALLINT)0) == FAIL)
  65.         {
  66.                 printf("dbrpcinit failed.\n");
  67.                 dbexit();
  68.                 exit(ERREXIT);
  69.         }
  70.         if (dbrpcparam(dbproc, "@param1", (BYTE)DBRPCRETURN, SQLINT4,
  71.                 -1, -1, (BYTE *)&param1)
  72.            == FAIL)
  73.         {
  74.                 printf("dbrpcparam failed.\n");
  75.                 dbexit();
  76.                 exit(ERREXIT);
  77.         }

  78.         if (dbrpcparam(dbproc, "@param2", (BYTE)DBRPCRETURN, SQLINT4,
  79.                 -1, -1,         (BYTE *)&param2)
  80.            == FAIL)
  81.         {
  82.                 printf("dbrpcparam failed.\n");
  83.                 dbexit();
  84.                 exit(ERREXIT);
  85.         }

  86.         if (dbrpcparam(dbproc, "@param3", (BYTE)DBRPCRETURN, SQLINT4,
  87.                         -1, -1, (BYTE *)&param3)
  88.            == FAIL)
  89.         {
  90.                 printf("dbrpcparam failed.\n");
  91.                 dbexit();
  92.                 exit(ERREXIT);
  93.         }

  94.         if (dbrpcparam(dbproc, "@param4", (BYTE)NULL, SQLINT4,
  95.                 -1, -1, (BYTE *)&param4)
  96.            == FAIL)
  97.         {
  98.                 printf("dbrpcparam failed.\n");
  99.                 dbexit();
  100.                 exit(ERREXIT);
  101.         }

  102.         if (dbrpcsend(dbproc) == FAIL)
  103.         {
  104.                 printf("dbrpcsend failed.\n");
  105.                 dbexit();
  106.                 exit(ERREXIT);
  107.         }

  108.         if (dbsqlok(dbproc) == FAIL)
  109.         {
  110.                 printf("dbsqlok failed.\n");
  111.                 dbexit();
  112.                 exit(ERREXIT);
  113.         }
  114.         while ((return_code = dbresults(dbproc)) != NO_MORE_RESULTS)
  115.         {
  116.                 if (return_code == FAIL)
  117.                 {
  118.                         printf("dbresults failed.\n");
  119.                         dbexit();
  120.                         exit(ERREXIT);
  121.                 }

  122.                 /* Print any rows that may have been returned. */
  123.                 dbprrow(dbproc);

  124.                 /* Examine any return parameters that may have arrived. */

  125.                 numrets = dbnumrets(dbproc);
  126.                 printf("%d return values received.\n\n", numrets);

  127.                 if (numrets != 0)
  128.                 {
  129.                         printf
  130.                          (FMTSTR, "Name", "Type", "Length", "Value");
  131.                         printf
  132.                          (FMTSTR,
  133.                                  "------------", "------------",
  134.                                  "------------", "------------");

  135.                    for (i = 1; i <= numrets; i++)
  136.                    {
  137.                            printf
  138.                                    (FMTSTR1, dbretname(dbproc, i),
  139.                                    dbprtype(dbrettype(dbproc, i)), dbretlen(dbproc, i),
  140.                                    *((DBINT *)(dbretdata(dbproc, i))));
  141.                    }

  142.                 }
  143.                 if (dbhasretstat(dbproc))
  144.                         printf("Return status = %ld\n", dbretstatus(dbproc));
  145.                 else
  146.                         printf("No return status for this command.\n");
  147.         }
  148.        
  149.         dbexit();
  150. }
  151. int err_handler(dbproc, severity, dberr, oserr, dberrstr, oserrstr)
  152. DBPROCESS       *dbproc;
  153. int             severity;
  154. int             dberr;
  155. int             oserr;
  156. char            *dberrstr;
  157. char            *oserrstr;
  158. {
  159.         if (dberrstr != NULL)         printf("DB-Library error:\n\t%s\n", dberrstr);

  160.         if (oserr != DBNOERR)
  161.                 printf("Operating-system error:\n\t%s\n", oserrstr);
  162.         if ((dbproc == NULL) || (DBDEAD(dbproc)))
  163.                 return(INT_EXIT);
  164.         else
  165. {

  166.         return(INT_CANCEL);
  167. }
  168. }

  169. int msg_handler(dbproc, msgno, msgstate, severity, msgtext,
  170. srvname, procname, line)
  171. DBPROCESS        *dbproc;
  172. DBINT                msgno;
  173. int                        msgstate;
  174. int                        severity;
  175. char                *msgtext;
  176. char                *srvname;
  177. char                *procname;
  178. DBUSMALLINT        line;

  179. {
  180.         printf ("Msg %ld, Level %d, State %d\n",
  181.                 msgno, severity, msgstate);

  182.         if (srvname !=  NULL)
  183.                 printf ("Server '%s', ", srvname);
  184.         if (procname !=  NULL)
  185.                 printf ("Procedure '%s', ", procname);
  186.         if (line !=  0)
  187.                 printf ("Line %d", line);

  188.         printf("\n\t%s\n", msgtext);

  189.         return(0);
  190. }
复制代码

论坛徽章:
0
5 [报告]
发表于 2004-10-13 15:13 |只看该作者

寻找关于db library 函数的资料,谢谢

谢谢斑竹
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP