Re: Running a script using MySQL++

2002-03-12 Thread Sinisa Milivojevic
Thi Cao writes: > All, > > I tried to run a script using MySQL++, but the procedure threw an exception > stating that there's something wrong with the syntax. I did the following: > > Connection conn; > Query query(&conn); > Result result; > > conn.connect("dbase","host","user","passwd"); > qu

RE: Running a script using MySQL++

2002-03-12 Thread Thi Cao
that's just a typo in the email message, however the script itself is correct -Original Message- From: Thi Cao Sent: Tuesday, March 12, 2002 11:00 AM To: Thi Cao; MySQL Subject: RE: Running a script using MySQL++ sorry, careless typing, but that's just a typo -Origin

RE: Running a script using MySQL++

2002-03-12 Thread Thi Cao
sorry, careless typing, but that's just a typo -Original Message- From: Thi Cao [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 10:48 AM To: MySQL Subject: Running a script using MySQL++ All, I tried to run a script using MySQL++, but the procedure threw an exception st

RE: Running a script using MySQL++

2002-03-12 Thread Roger Baklund
* Thi Cao > dropt database if exists sample; ^ Don't know if this is the reason for your problem, but it should be 'drop'. -- Roger query - Before posting, please check: http://www.mysql.com/manual.php (the manual)

Running a script using MySQL++

2002-03-12 Thread Thi Cao
All, I tried to run a script using MySQL++, but the procedure threw an exception stating that there's something wrong with the syntax. I did the following: Connection conn; Query query(&conn); Result result; conn.connect("dbase","host","user","passwd"); query << "source batch.sql"; //most lik