tuple.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /* Module:          tuple.c
  2.  *
  3.  * Description:     This module contains functions for setting the data for individual
  4.  *                  fields (TupleField structure) of a manual result set.
  5.  *
  6.  * Important Note:  These functions are ONLY used in building manual result sets for 
  7.  *                  info functions (SQLTables, SQLColumns, etc.)
  8.  *
  9.  * Classes:         n/a
  10.  *
  11.  * API functions:   none
  12.  *
  13.  * Comments:        See "notice.txt" for copyright and license information.
  14.  *
  15.  */
  16. #include "tuple.h"
  17. #include <string.h>
  18. #include <stdlib.h>
  19. void set_tuplefield_null(TupleField *tuple_field)
  20. {
  21. tuple_field->len = 0;
  22. tuple_field->value = NULL;  // strdup("");
  23. }
  24. void set_tuplefield_string(TupleField *tuple_field, char *string)
  25. {
  26. tuple_field->len = strlen(string);
  27. tuple_field->value = malloc(strlen(string)+1);
  28. strcpy(tuple_field->value, string);
  29. }
  30. void set_tuplefield_int2(TupleField *tuple_field, Int2 value)
  31. {
  32. char buffer[10];
  33. sprintf(buffer,"%d", value);
  34. tuple_field->len = strlen(buffer)+1;
  35. /* +1 ... is this correct (better be on the save side-...) */
  36. tuple_field->value = strdup(buffer);
  37. }
  38. void set_tuplefield_int4(TupleField *tuple_field, Int4 value)
  39. {
  40. char buffer[15];
  41. sprintf(buffer,"%ld", value);
  42. tuple_field->len = strlen(buffer)+1;
  43. /* +1 ... is this correct (better be on the save side-...) */
  44. tuple_field->value = strdup(buffer);
  45. }