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");
> query << "source batch.sql";  //most likely the problem
> result = query.store();
> 
> That's pretty much it, for the most important parts.  Below are the contents
> of the "batch.sql" script:
> 
> dropt database if exists sample;
> create database sample;
> use sample;
> create table one(col1 int, col2 int);
> 
> Am I not allowed to run a script using MySQL++ or did I execute the
> procedure incorrectly?  Once again, thanks for your assistance.
> 
> 
> Thi
> 

Hi!

MySQL++ is C++ API and it can not run scripts.

The above string should contain a valid SQL command.

-- 
Regards,
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Mr. Sinisa Milivojevic <[EMAIL PROTECTED]>
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Fulltime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
       <___/   www.mysql.com


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to