~drizzle-trunk/libdrizzle/jenkins-Libdrizzle-107

« back to all changes in this revision

Viewing changes to libdrizzle-5.1/conn.h

  • Committer: Continuous Integration
  • Date: 2013-01-27 02:09:54 UTC
  • mfrom: (97.1.4 libdrizzle-5.1)
  • Revision ID: ci@drizzle.org-20130127020954-h0ly15hsqztfk79j
Merge lp:~brianaker/libdrizzle/cleanup-api Build: jenkins-Libdrizzle-55

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
const char *drizzle_error(const drizzle_st *con);
106
106
 
107
107
/**
108
 
 * Value of errno in the case of a DRIZZLE_RETURN_ERRNO return value.
109
 
 *
110
 
 * @param[in] con Connection structure previously initialized with
111
 
 *  drizzle_create(), drizzle_clone(), or related functions.
112
 
 * @return An errno value as defined in your system errno.h file.
113
 
 */
114
 
DRIZZLE_API
115
 
int drizzle_errno(const drizzle_st *con);
116
 
 
117
 
/**
118
108
 * Get server defined error code for the last result read.
119
109
 *
120
110
 * @param[in] con Connection structure previously initialized with