Dear Visual C++ developer,

Thanks for downloading this example program.
The source codes of this program is available at:
http://www.yeohhs.com/mynotes.htm

The default database and table created are shown below.
char cHost[256] = "localhost"; // mysql server is installed on a local PC
char szDB[]     = "MyData" ;  // the database that we will use

mysql> describe mynotes_info;
+-----------+-------------+------+-----+---------+-------+
| Field     | Type        | Null | Key | Default | Extra |
+-----------+-------------+------+-----+---------+-------+
| DateTaken | date        | YES  |     | NULL    |       |
| Subject   | varchar(80) | YES  |     | NULL    |       |
| Keywords  | varchar(80) | YES  |     | NULL    |       |
| Notes     | text        |      |     |         |       |
| Remarks   | text        |      |     |         |       |
+-----------+-------------+------+-----+---------+-------+
5 rows in set (0.05 sec)


If you have purchased the example code, you can freely customize MyNotes
to suit your needs.
To purchase the MyNotes example code, please visit:
http://www.yeohhs.com/mynotes.htm

Best Regards,
Yeoh
--


