FAQ

Search Discussions

24 discussions - 87 posts

  • mysql++-3.0.6 mysql-5.0.45-6.fc7 g++ 4.1.2 I have an SSQLS definition like so; sql_create_11( individual, 1, 11, mysqlpp::sql_bigint, individualID, mysqlpp::sql_char, firstName, mysqlpp::sql_char, ...
    Brad HubbardBrad Hubbard
    Dec 3, 2008 at 12:23 pm
    Dec 8, 2008 at 6:09 am
  • I'm trying to create a SSQLS structure to represent a derived type. Consider the following: // base.h class base { int id; }; // derived.h #include "base.h" class derived : public base { std::string ...
    Ryan W. FrenzRyan W. Frenz
    Dec 3, 2008 at 6:42 pm
    Dec 8, 2008 at 9:44 pm
  • Hi Warren Young: Below is a simple example I wrote. The problem is that the memory will increase all the time when executing "mysqlpp::sql_int id = obRow[0]". But the memory will be stable when only ...
    Weidong shenWeidong shen
    Dec 16, 2008 at 5:39 am
    Dec 16, 2008 at 7:31 pm
  • Given: 1) A MySql database server built to accept SSL connections, with its server key, server certificate, and CA certificate called 'ca.pem', have_openssel = YES, have_ssl = YES, and using a well ...
    Edward DienerEdward Diener
    Dec 20, 2008 at 3:06 am
    Dec 21, 2008 at 7:50 pm
  • Hi again! Another problem I ran into: I have installed all possible MySQL-Packages (RPM-Versions on SLES 10 AMD64). When I run my test program, it segfaults. And the DBG output is a little confusing. ...
    Ebner Ej JohannesEbner Ej Johannes
    Dec 17, 2008 at 9:33 am
    Dec 18, 2008 at 2:04 pm
  • Hi Conversion from integer types to strings in C++ streams depends on the global locale, if the locale isn't specifically set for a stream. It looks like this also affects MySQL++ Query objects (in ...
    Tomaž ŠolcTomaž Šolc
    Dec 12, 2008 at 9:33 am
    Dec 12, 2008 at 5:13 pm
  • Plus-plussers: I don't know if this is really a MySQL++ question or a MySQL question. I believe there should be something I can do through MySQL++ to correct this, but I cannot find anything with ...
    Rick GutleberRick Gutleber
    Dec 19, 2008 at 11:41 pm
    Dec 31, 2008 at 4:37 pm
  • Hello, I am using mysql++-3.0.4. I am trying to execute a Stored Procedure which is having 151 input parameters and 1 output parameter. But MySQL++ is allowing maximum128 input parameters. I have ...
    Rajesh choudharyRajesh choudhary
    Dec 25, 2008 at 1:08 pm
    Dec 29, 2008 at 8:43 pm
  • I want to use template query like this query = "SELECT name FROM player WHERE id = %0" int id = 0x12345 result = query.store( id ) and this will throw exception. "Failed to find MySQL C API type ID ...
    soryu Jeongsoryu Jeong
    Dec 18, 2008 at 1:54 pm
    Dec 19, 2008 at 1:17 am
  • Hi out there! I am currently writing a wrapper for our MySQL database in C++ - and I'm fairly new to C++ (in fact, this is my first project ^^). So please excuse any dumb-ass things ;-) Ok, now the ...
    Ebner Ej JohannesEbner Ej Johannes
    Dec 15, 2008 at 4:04 pm
    Dec 16, 2008 at 8:52 am
  • How do I make a SSL connection using mysql++ ? I did not see any mention of SSL in the mysql++ documentation but maybe I just missed it. In the MySql help file, at the end of section 5.5.7.3 I read: ...
    Edward DienerEdward Diener
    Dec 13, 2008 at 10:18 pm
    Dec 15, 2008 at 3:25 pm
  • Hi Warren and all, Just a random thought - nested transactions are not possible in MySQL. However, local testing indicates that an attempt to begin a nested transaction doesn't fail. Personally, I'd ...
    Joel FielderJoel Fielder
    Dec 11, 2008 at 11:54 am
    Dec 12, 2008 at 8:32 am
  • I took the simple1 example, and im playing with it to learn how to use it. And i got it running! but... For my application, I'm using opengl, and so far it can only print text from char* I might be ...
    Pavel989Pavel989
    Dec 18, 2008 at 5:52 am
    Dec 24, 2008 at 1:30 pm
  • Hi Its mentioned in the user manual: "An important limitation of the MySQL C API library - which MySQL++ is built atop, so it shares this limitation - is that you can't have two concurrent queries ...
    Kartik mahajanKartik mahajan
    Dec 19, 2008 at 7:08 am
    Dec 19, 2008 at 9:00 am
  • I am having a bit of an issue with escaping a query. I build my query parameters in two different strings. On holds the fields and the other holds the data. Now, the issue that I have is the data may ...
    R ottmanjR ottmanj
    Dec 11, 2008 at 11:23 pm
    Dec 12, 2008 at 2:13 am
  • I am using FreeBSD 5.2.1 and gcc 3.3.3 today I downloaded MySQL++ 3.0.8 and tried to compile, but it cannot compile. compile error message is below. g++ -c -o mysqlpp_connection.o -I. -fPIC -DPIC ...
    soryu Jeongsoryu Jeong
    Dec 11, 2008 at 11:54 am
    Dec 12, 2008 at 2:04 am
  • Hey all. I'm really new to MySQL, and MYSQL++ even more so (plan to change that). anyways, i followed the directions best i can, using visual studio, and rebake. i edited the correct file, because im ...
    Pavel989Pavel989
    Dec 8, 2008 at 6:34 am
    Dec 9, 2008 at 9:42 am
  • The documentation for the TCPConnection constructor says the first parameter, addr, "may be followed by a colon and a port number or service name to override default port." To what does the "service ...
    Edward DienerEdward Diener
    Dec 6, 2008 at 5:18 am
    Dec 6, 2008 at 11:21 am
  • Hi All, How do I limit to one Connection per thread? I am using the ConnectionPool class and I like it. But I would also like to limit the number of grab and release in my thread to one. With the ...
    Jay RajputJay Rajput
    Dec 5, 2008 at 9:38 pm
    Dec 5, 2008 at 10:26 pm
  • I am new to the mysql++ api, and I have run into a few problems with trying to compile the exmaple simple1. The main issue that I see at this point has to do with my linking. I have modeled my ...
    R ottmanjR ottmanj
    Dec 2, 2008 at 9:12 pm
    Dec 3, 2008 at 9:39 am
  • I have a few questions about the parameters for SslOption/mysql_ssl_set ( C++/C ) and about SSL in general between the server and the client. I do understand what a certificate, a private key, and a ...
    Edward DienerEdward Diener
    Dec 18, 2008 at 12:12 pm
    Dec 18, 2008 at 12:12 pm
  • I have a few questions about the parameters for SslOption and about SSL in general between the server and the client. I do understand what a certificate, a private key, and a public key is in ...
    Edward DienerEdward Diener
    Dec 17, 2008 at 2:59 am
    Dec 17, 2008 at 2:59 am
  • Hi All, Does template queries made your code complex or I am not making the proper use of them? I am looking for more examples of template queries. Are there other libraries or languages which ...
    Jay RajputJay Rajput
    Dec 8, 2008 at 3:56 pm
    Dec 8, 2008 at 3:56 pm
Group Navigation
period‹ prev | Dec 2008 | next ›
Group Overview
groupplusplus @
categoriesmysql
discussions24
posts87
users22
websitemysql.com
irc#mysql

22 users for December 2008

Warren Young: 32 posts Edward Diener: 8 posts Brad Hubbard: 7 posts Rick Gutleber: 5 posts Ebner Ej Johannes: 4 posts Mickaël Wolff: 4 posts Weidong shen: 4 posts Ryan W. Frenz: 3 posts Pavel989: 2 posts Jay Rajput: 2 posts Joel Fielder: 2 posts Rajesh choudhary: 2 posts R ottmanj: 2 posts soryu Jeong: 2 posts Alex: 1 post Alex Luya: 1 post Attila: 1 post Bsingh: 1 post Jonathan Wakely: 1 post Kartik mahajan: 1 post
show more
Archives