Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: HelloWorld ServoInterfaceBoardExample1 4180_Lab4
Diff: services/mysql/MySQLClient.h
- Revision:
- 6:b7dd7cde8ad2
- Parent:
- 5:dd63a1e02b1b
- Child:
- 9:c79fa4034f5b
--- a/services/mysql/MySQLClient.h Tue Jul 27 15:59:42 2010 +0000
+++ b/services/mysql/MySQLClient.h Wed Jul 28 10:18:21 2010 +0000
@@ -21,6 +21,10 @@
THE SOFTWARE.
*/
+/** \file
+MySQL Client header file
+*/
+
#ifndef MYSQL_CLIENT_H
#define MYSQL_CLIENT_H
@@ -40,16 +44,16 @@
///MySQL client results
enum MySQLResult
{
- MYSQL_OK,
- MYSQL_PROCESSING,
- MYSQL_PRTCL,
- MYSQL_SETUP, ///Not properly configured
- MYSQL_DNS, ///Could not resolve name
- MYSQL_AUTHFAILED, ///Auth failure
- MYSQL_READY, ///Ready to send commands
- MYSQL_SQL, ///SQL Error
- MYSQL_TIMEOUT, ///Connection timeout
- MYSQL_CONN ///Connection error
+ MYSQL_OK, ///<Success
+ MYSQL_PROCESSING, ///<Processing
+ MYSQL_PRTCL, ///<Protocol error
+ MYSQL_SETUP, ///<Not properly configured
+ MYSQL_DNS, ///<Could not resolve name
+ MYSQL_AUTHFAILED, ///<Auth failure
+ MYSQL_READY, ///<Ready to send commands
+ MYSQL_SQL, ///<SQL Error
+ MYSQL_TIMEOUT, ///<Connection timeout
+ MYSQL_CONN ///<Connection error
};
///A MySQL Client