.net

2002-02-27 Thread Joshua Angolano
Has anyone tried to use the Mysql++ api with visual C++.net? Thanks, Josh - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list

.net

2002-02-27 Thread Joshua Angolano
I have tried to use the Mysql++ api with visual C++ .net. It would not even compile the library. Has anyone had any luck with this?? Maybe there is some setting that I missed?? Are there any plans to update Mysql++ to work with visual C++.net?? Thanks, Josh

VC++ .net

2002-02-26 Thread Joshua Angolano
Has anyone tried to use Mysql++ with Microsoft Visual C++ .NET? Better yet, has anyone had any luck and how? Thanks for your help, Josh - Before posting, please check: http://www.mysql.com/manual.php (the

Mysql ++, Inserts

2002-01-04 Thread Joshua Angolano
Can, you send insert statements through standard SQL, instead of using special structures? Here is an example: String loc; loc=home; Query query = con.query(); query insert into loacation (user_location) values('loc'); query.execute(); Assuming of course that con is a type of Connection.

RE: assigning root password

2002-01-04 Thread Joshua Angolano
After an install, you should be able to connect to Mysql as root without a password. Example: mysql - u root. Then SET PASSWORD FOR root@% = PASSWORD('biscuit'); That will set the root password for any host to biscuit. To set the password for root@localhost SET PASSWORD FOR root@localhost =