~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/column.h

  • Committer: Mark Atwood
  • Date: 2011-12-11 22:56:39 UTC
  • mfrom: (2465.1.1 drizzle)
  • Revision ID: me@mark.atwood.name-20111211225639-3d8ype7g2y82dci5
mergeĀ lp:~brianaker/drizzle/libdrizzle-breakout

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 *
35
35
 */
36
36
 
 
37
#pragma once
37
38
 
38
39
/**
39
40
 * @file
40
41
 * @brief Column Declarations
41
42
 */
42
43
 
43
 
#ifndef __DRIZZLE_COLUMN_H
44
 
#define __DRIZZLE_COLUMN_H
45
 
 
46
44
#ifdef __cplusplus
47
45
extern "C" {
48
46
#endif
84
82
const char *drizzle_column_catalog(drizzle_column_st *column);
85
83
 
86
84
/**
87
 
 * Get database name for a column.
 
85
 * Get schema name for a column.
88
86
 */
89
87
DRIZZLE_API
 
88
const char *drizzle_column_shema(drizzle_column_st *column);
 
89
 
 
90
DRIZZLE_API
90
91
const char *drizzle_column_db(drizzle_column_st *column);
91
92
 
92
93
/**
147
148
 * Get the Drizzle type of a column.
148
149
 */
149
150
DRIZZLE_API
150
 
drizzle_column_type_drizzle_t
151
 
drizzle_column_type_drizzle(drizzle_column_st *column);
 
151
drizzle_column_type_drizzle_t drizzle_column_type_drizzle(drizzle_column_st *column);
152
152
 
153
153
/**
154
154
 * Get flags for a column.
174
174
#ifdef __cplusplus
175
175
}
176
176
#endif
177
 
 
178
 
#endif /* __DRIZZLE_COLUMN_H */