Re: [Boost-users] boost library for SQL
Hi,
Does boost library has library in c++ for SQL? If not, does anyone know if there is a c++
On Tue, July 10, 2007 08:04, Meryl Silverburgh wrote: library for sql?
Thank you. _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
Please take a look at SOCI at http://soci.sourceforge.net/ This is a really great lib! With Kind Regards, Ovanes Markarian
Hello, Wave experts, I have been using boost wave library without much problems so far. But recently when I was trying to compile our program with UNICODE mode using VC++ 2005 Express, I got this compile error: c:\users\tools\boost\boost_1_34_0\boost\wave\util\cpp_macromap.hpp(683) : error C2001: newline in constant It complains about the following lines: argument->push_back(token_type(T_PLACEMARKER, "?, I copy more lines of the file here: #if BOOST_WAVE_SUPPORT_VARIADICS_PLACEMARKERS != 0 if (boost::wave::need_variadics(ctx.get_language())) { // store a placemarker as the argument argument->push_back(token_type(T_PLACEMARKER, "?, (*next).get_position())); ++count_arguments; } It was strange to me that without setting to UNICODE mode, I did not have this problem. Another interesting thing is that if I added the closing double quate " and changed the line as to below, the compile error went away: argument->push_back(token_type(T_PLACEMARKER, "?", But I am not sure if I am doing right thing and not sure if the wave developer really missed closing double quate. If anybody could provide an insight to this issue, it is appreciated. Best regards, Fanzhe Cui ++++++++++++++++++++++++++++++++++++++++++++++ Goldiom Systems LLC - Information and Communication Technology Provider Email: fanzhe.cui@goldiom.com Tel: 973-210-4254 www.goldiom.com
I did not see my msg went through. So posting again. Best regards, Fanzhe Cui ++++++++++++++++++++++++++++++++++++++++++++++++++++++ Goldiom Systems LLC - Information and Communication Technology Provider Email: fanzhe.cui@goldiom.com Tel: 973-210-4254 www.goldiom.com -----Original Message----- From: Fanzhe Cui [mailto:fanzhe.cui@goldiom.com] Sent: 2007年7月10日 5:22 To: 'boost-users@lists.boost.org' Subject: [Boost-users] [wave] compling error - error C2001: newline in constant Hello, Wave experts, I have been using boost wave library without much problems so far. But recently when I was trying to compile our program with UNICODE mode using VC++ 2005 Express, I got this compile error: c:\users\tools\boost\boost_1_34_0\boost\wave\util\cpp_macromap.hpp(683) : error C2001: newline in constant It complains about the following lines: argument->push_back(token_type(T_PLACEMARKER, "?, I copy more lines of the file here: #if BOOST_WAVE_SUPPORT_VARIADICS_PLACEMARKERS != 0 if (boost::wave::need_variadics(ctx.get_language())) { // store a placemarker as the argument argument->push_back(token_type(T_PLACEMARKER, "?, (*next).get_position())); ++count_arguments; } It was strange to me that without setting to UNICODE mode, I did not have this problem. Another interesting thing is that if I added the closing double quate " and changed the line as to below, the compile error went away: argument->push_back(token_type(T_PLACEMARKER, "?", But I am not sure if I am doing right thing and not sure if the wave developer really missed closing double quate. If anybody could provide an insight to this issue, it is appreciated. Best regards, Fanzhe Cui ++++++++++++++++++++++++++++++++++++++++++++++ Goldiom Systems LLC - Information and Communication Technology Provider Email: fanzhe.cui@goldiom.com Tel: 973-210-4254 www.goldiom.com
Does boost library has library in c++ for SQL? If not, does anyone know if there is a c++ library for sql?
Please take a look at SOCI at http://soci.sourceforge.net/ This is a really great lib!
Yes, but does not have std::wstring support yet, if I'm not mistaken. Cheers, Filip
participants (3)
-
Fanzhe Cui
-
Filip Konvička
-
Ovanes Markarian