Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b5274f3f
Commit
b5274f3f
authored
Aug 25, 2004
by
paul@kite-hub.kitebird.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql.h:
Fix a misleading plural that should be singular. Fix other typos while I'm at it.
parent
dd601de6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
include/mysql.h
include/mysql.h
+4
-4
No files found.
include/mysql.h
View file @
b5274f3f
...
@@ -99,7 +99,7 @@ typedef struct st_mysql_field {
...
@@ -99,7 +99,7 @@ typedef struct st_mysql_field {
unsigned
int
flags
;
/* Div flags */
unsigned
int
flags
;
/* Div flags */
unsigned
int
decimals
;
/* Number of decimals in field */
unsigned
int
decimals
;
/* Number of decimals in field */
unsigned
int
charsetnr
;
/* Character set */
unsigned
int
charsetnr
;
/* Character set */
enum
enum_field_types
type
;
/* Type of field. Se mysql_com.h for types */
enum
enum_field_types
type
;
/* Type of field. Se
e
mysql_com.h for types */
}
MYSQL_FIELD
;
}
MYSQL_FIELD
;
typedef
char
**
MYSQL_ROW
;
/* return data as array of strings */
typedef
char
**
MYSQL_ROW
;
/* return data as array of strings */
...
@@ -175,7 +175,7 @@ struct st_mysql_options {
...
@@ -175,7 +175,7 @@ struct st_mysql_options {
*/
*/
my_bool
rpl_parse
;
my_bool
rpl_parse
;
/*
/*
If set, never read from a master,only from slave, when doing
If set, never read from a master,
only from slave, when doing
a read that is replication-aware
a read that is replication-aware
*/
*/
my_bool
no_master_reads
;
my_bool
no_master_reads
;
...
@@ -538,7 +538,7 @@ enum enum_mysql_stmt_state
...
@@ -538,7 +538,7 @@ enum enum_mysql_stmt_state
typedef
struct
st_mysql_bind
typedef
struct
st_mysql_bind
{
{
unsigned
long
*
length
;
/* output length pointer */
unsigned
long
*
length
;
/* output length pointer */
my_bool
*
is_null
;
/* Pointer to null indicator
s
*/
my_bool
*
is_null
;
/* Pointer to null indicator */
void
*
buffer
;
/* buffer to get/put data */
void
*
buffer
;
/* buffer to get/put data */
enum
enum_field_types
buffer_type
;
/* buffer type */
enum
enum_field_types
buffer_type
;
/* buffer type */
unsigned
long
buffer_length
;
/* buffer length, must be set for str/binary */
unsigned
long
buffer_length
;
/* buffer length, must be set for str/binary */
...
@@ -581,7 +581,7 @@ typedef struct st_mysql_stmt
...
@@ -581,7 +581,7 @@ typedef struct st_mysql_stmt
unsigned
char
**
row
);
unsigned
char
**
row
);
unsigned
long
stmt_id
;
/* Id for prepared statement */
unsigned
long
stmt_id
;
/* Id for prepared statement */
unsigned
int
last_errno
;
/* error code */
unsigned
int
last_errno
;
/* error code */
unsigned
int
param_count
;
/* input
e parameters
count */
unsigned
int
param_count
;
/* input
parameter
count */
unsigned
int
field_count
;
/* number of columns in result set */
unsigned
int
field_count
;
/* number of columns in result set */
enum
enum_mysql_stmt_state
state
;
/* statement state */
enum
enum_mysql_stmt_state
state
;
/* statement state */
char
last_error
[
MYSQL_ERRMSG_SIZE
];
/* error message */
char
last_error
[
MYSQL_ERRMSG_SIZE
];
/* error message */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment