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: Slow retrieval from DB: msg#00003

db.mysql.c++

Subject: Re: Slow retrieval from DB

Joseph Burneff wrote:

Hello,

I'm using the MySQL++ to place strings into an array.
The database has about 100K records. It takes about
2-3 minutes to access the database and put all the
strings into the array. The database server is MySQL.
The machine is an Intel Celeron with 128 MB of RAM
with a 100BaseT connection. My code is shown below:

// Inputs data from table "strings" through a remote
DB connection
char** GetData(int &dataCnt) {
char** data;

dataCnt = 0;
Connection con(use_exceptions); con.connect("test", "home", "teddy", "bear"); Query query = con.query(); query << "select * from strings"; Result res = query.store(); Row row; data = new char*[res.size()];
Result::iterator i; for (i = res.begin(); i != res.end(); i++) { row = *i; data[dataCnt] = new char[strlen(row[0])];
strcpy(data[dataCnt], row[0]); dataCnt++; }
return data;
}

Is this length of time to be expected for database
access with the API or is there a faster way to code
this?
Thanks,

Joe


A speed that you get is expected.

You have lot's of unnecessary code.

As you have stored all data , memory is already allocated and so your code with :

.. new char[strlen...
strcpy
etc ...

is just wasting memory and CPU.

--

Sincerely,

--
For technical support contracts, go to https://order.mysql.com/?ref=msmi
__ ___ ___ ____ __
/ |/ /_ __/ __/ __ \/ / Mr. Sinisa Milivojevic <sinisa@xxxxxxxxx>
/ /|_/ / // /\ \/ /_/ / /__ MySQL AB
/_/ /_/\_, /___/\___\_\___/ Full time Developer and Support Coordinator
<___/ www.mysql.com Larnaca, Cyprus



--
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