2 messages in com.mysql.lists.plusplusMysql2.2.3 and Kdevelop:| From | Sent On | Attachments |
|---|---|---|
| Dr. BVLS Prasad | 24 May 2007 11:05 | |
| Warren Young | 25 May 2007 03:56 |
| Subject: | Mysql2.2.3 and Kdevelop:![]() |
|---|---|
| From: | Dr. BVLS Prasad (burr...@gmail.com) |
| Date: | 05/24/2007 11:05:13 AM |
| List: | com.mysql.lists.plusplus |
Hi,
I am trying to compile mysql2.2.3 under kdevelop3.4. No Reported such a Problem earlier. did it creep into the recent version??
I am getting the following problem: ************************************************************************** /usr/include/mysql/mysql.h: In member function 'bool mysqlpp::Connection::shutdown()': /usr/include/mysql/mysql.h:508: error: too few arguments to function 'int mysql_shutdown(MYSQL*, mysql_enum_shutdown_level)' /home/bosdev/MoliKool/src/mymysql/connection.cpp:320: error: at this point in file make: *** [connection.o] Error 1 *** Exited with status: 2 *** ************************************************************************* The Declaration for the Function is: int STDCALL mysql_shutdown(MYSQL *mysql, enum mysql_enum_shutdown_level shutdown_level); ************************************************************************* The implementation of this function where the error is coming: bool Connection::shutdown() { if (connected()) { bool suc = !(mysql_shutdown(&mysql_ SHUTDOWN_ARG)); ..... ************************************************************************* Could some body help me ???? thank you, Prasad.
On 5/22/07, Dr. BVLS Prasad <burr...@gmail.com> wrote:
Hi Warran & Drew its the least of the problem but its definitely the first of the problems.
I am more comfortable with OOPs so I preferred to start with mysqlpp than its c api. I understand that c api would be a better bet to start with but some craziness for OOPS/CPP.
I would definitely try since I really end up in generating many many schemas for different analytical aspects of the data currently running in biology.
thanks for the inputs from all. Yes, I am new to mysql/mysqlpp. and I take the suggestions and follow them sincerely to learn fastly.
Thanks alot. Prasad.
On 5/22/07, Warren Young <mysq...@etr-usa.com> wrote:
Dr. BVLS Prasad wrote:
a) I have to create the database , table using the methods available and the query object
You don't have to use MySQL++ to create the database. It's one way, but MySQL++ doesn't limit you. It's completely up to you how you create the database and the tables within it.
b) insert the data and /or execute the queries using query object. b) then use ssqls to access the data from the table in / out of order keeping the parameters same/similar.
You can do all of this with SSQLS. See examples/custom*.cpp.
wouldnt it be nice to create an object which will automatically create the table schema and also table "named" structure.?
Yes, it would. If you are volunteering to write that code, read the HACKERS file before submitting your patch.
(especially it will be most comfortable to the work running into millions of schemas and trillions of data in the form of rows as is the case with biological sequences and structures.)
If you have trillions of rows, it seems to me that the process of creating the database schema is the least of your problems. But if you feel you must expend effort to solve it more elegantly, I won't stand in your way.
-- MySQL++ Mailing List For list archives: http://lists.mysql.com/plusplus To unsubscribe: http://lists.mysql.com/plusplus?unsub=burr...@gmail.com




