Please take our Survey
logo       

Choosing A Webhost:
A web hosting service is a type of Internet hosting service that allows individuals and organizations to provide their own website accessible via the World Wide Web. Web hosts are companies that provide space on a server they own for use by their clients as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center, called colocation. more...

Re: Running a SQL source file from API: msg#00031

db.mysql.c++

Subject: Re: Running a SQL source file from API

Why not just use fstream?

Ive been coding MySQL++ for two days, (Thanks to all, managed to get it
compiling without linker errors yesterday) But its something along the
lines of....

#include <fstream.h>
#include <iostream>
/*add mysql++ junk*/

ifstream infile;
infile.open(/*Filename goes here as a char * */);

if( !infile ) {
/*panic, because you cant open your file*/
}

char buff[2000]; std::string code = "";
infile.getline(buff, sizeof(buff));
while( !infile.eof() ) {
code = code + buff;
code = code + " "; //as getline gets rid of \n (newline), which will
leave some words without gaps, and screw things up
infile.getline(buff, sizeof(buff));
}

infile.close();

//then just open your connection, and pass the file over.

Connection con("database","/*host address goes
here*/","user","password");
Query query = con.query();
query << code.c_str(); //or you might be able to get away with query
<< code;

I havnt stuck that in to a compiler, so it will certainly need some
tweaking, and you might want to use namespaces, and lose the .h of
fstream.h

Im a mysqp++ newbie too, so that might not be the best way of going
about it....

Darren

>>> "Howard Cole" <howard.cole@xxxxxxxxxxxxx> 11/05/04 11:20:45 >>>
Hi,

How can I execute the contents of a SQL file using the API? I am
looking for the equivalent of typing "source file.sql;" from the mysql
command prompt.

Thanks.

Howard Cole
http://www.selestial.com

--
MySQL++ Mailing List
For list archives: http://lists.mysql.com/plusplus
To unsubscribe:
http://lists.mysql.com/plusplus?unsub=gcdmc-plusplus@xxxxxxxxxxx




<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
ide.eclipse.wtp...    bug-tracking.ro...    xfree86.cvs/200...    lisp.wxcl.devel...    file-systems.ar...    kde.devel.kwrit...    jakarta.jetspee...    qnx.openqnx.dev...    drivers.openib/...    ports.xbox.deve...    gis.gdal.devel/...    netbsd.ports.ma...    ubuntu.marketin...    systemtap/2005-...    web.omniweb/200...    mail.qmail.ldap...    hardware.soekri...    os.netbsd.devel...    audio.madman.ge...    tv.freeguide-tv...    cluster.openmos...    education.ezpro...   
Home | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe

Navigation