#include <MyMySQLPPField.h>
Definition at line 28 of file MyMySQLPPField.h.
Public Member Functions | |
CMyMySQLPPField (void) | |
Class constructor. | |
CMyMySQLPPField (MYSQL_FIELD *field) | |
Class constructor accepting a field pointer. | |
~CMyMySQLPPField (void) | |
Class destructor. | |
void | Attach (MYSQL_FIELD *field) |
Attaches a field object. | |
void | Free (void) |
Resets internal field pointer. | |
char * | GetName (void) |
The name of the field, as a null-terminated string. | |
char * | GetTable (void) |
The name of the table containing this field, if it isn't a calculated field. For calculated fields, the returned value is an empty string. | |
char * | GetDefaultValue (void) |
The default value of this field, as a null-terminated string. This is set only if you use CMyMySQLPPConnection::ListFields. | |
enum enum_field_types | GetType (void) |
The type of the field. | |
char * | GetTypeString (void) |
The type of the field as string. |
|
Class constructor.
Definition at line 32 of file MyMySQLPPField.cpp. |
|
Class constructor accepting a field pointer.
Definition at line 40 of file MyMySQLPPField.cpp. References Attach(). |
|
Class destructor.
Definition at line 47 of file MyMySQLPPField.cpp. References Free(). |
|
Attaches a field object.
Definition at line 55 of file MyMySQLPPField.cpp. Referenced by CMyMySQLPPField(), and CMyMySQLPPResult::FetchField(). |
|
Resets internal field pointer.
Definition at line 61 of file MyMySQLPPField.cpp. Referenced by CMyMySQLPPResult::FetchField(), and ~CMyMySQLPPField(). |
|
The default value of this field, as a null-terminated string. This is set only if you use CMyMySQLPPConnection::ListFields.
Definition at line 85 of file MyMySQLPPField.cpp. |
|
The name of the field, as a null-terminated string.
Definition at line 69 of file MyMySQLPPField.cpp. |
|
The name of the table containing this field, if it isn't a calculated field. For calculated fields, the returned value is an empty string.
Definition at line 77 of file MyMySQLPPField.cpp. |
|
The type of the field.
Definition at line 93 of file MyMySQLPPField.cpp. Referenced by GetTypeString(). |
|
The type of the field as string.
Definition at line 101 of file MyMySQLPPField.cpp. References GetType(). |