libmysqlcppconn7-1.1.8-8.1<>,"YNX/=„i 9:o&z-6mP:|d*Ӏ[Syo[j(f4札F~ 9Jn8v(82x%c0 _ܕG6dnLq/s.Ux&zZU/ ZO'#7ClUSeSHzRwu2fur EE=}^\,<?d  c $7@b {     ,4>Hpx;(b8l9: >@FGHIXY\] ^Pb\cdefluvw8x@yHzClibmysqlcppconn71.1.88.1MySQL Connector/C++: Standardized database driver for C++ developmentMySQL Connector/C++ is a MySQL database connector for C++ development. The MySQL driver for C++ can be used to connect to MySQL from C++ applications. The driver mimics the JDBC 4.0 API. It implements a significant subset of JDBC 4.0. The Driver for C++ is designed to work best with MySQL 5.1 or later. Note - its full functionality is not available when connecting to MySQL 5.0. You cannot connect to MySQL 4.1 or earlier.YNXwildcard3 rxopenSUSE Leap 42.3openSUSESUSE-GPL-2.0-with-FLOSS-exceptionhttp://bugs.opensuse.orgDevelopment/Libraries/C and C++http://dev.mysql.com/downloads/connector/linuxx86_64 rxYNWYNWe6d2371d2cac82a4df31864395624e9alibmysqlcppconn.so.7.1.1.8rootrootrootrootmysql-connector-cpp-1.1.8-8.1.src.rpmlibmysqlcppconn.so.7()(64bit)libmysqlcppconn7libmysqlcppconn7(x86-64)@@@@@@@@@@@@@@@   /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2.5)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.1)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.15)(64bit)libstdc++.so.6(GLIBCXX_3.4.9)(64bit)rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)3.0.4-14.0-14.4.6-14.11.2YY.@X@U5@Tk@SӘ@Qq1QnQ\Q9Q@O@O@M{@J@Jn@JB@JMIo@kstreitova@suse.commpluskal@suse.comadam.majer@suse.detchvatal@suse.comtchvatal@suse.comcobexer@gmail.commhrusecky@suse.czmhrusecky@suse.czmhrusecky@suse.comsaschpe@suse.deadam@mizerski.plcdenicolo@suse.comcoolo@suse.commhrusecky@suse.czcoolo@novell.commhrusecky@suse.czmhrusecky@suse.czmhrusecky@suse.czmhrusecky@suse.cz- add "Requires: boost-devel" for libmysqlcppconn-devel subpackage [bsc#838038]- Update to version 1.1.8: * See the news files on https://dev.mysql.com/doc/relnotes/connector-cpp/en/- use individual libboost-*-devel packages instead of boost-devel- Version bump to 1.1.6: * See the news files on https://dev.mysql.com/doc/relnotes/connector-cpp/en/ - Update soname to libmyslqcppcon7 - Remove needlessly long description - Drop unneeded/merged patches: mysql-connector-cpp-1.1.0-cmake-paths-fix.patch mysql-connector-cpp-1.1.0-gcc44.patch - Refresh patch: mysql-connector-cpp-1.1.0-disable_tests_and_examples.patch - Add patch to build with mariadb: mariadb_api.patch- Use cmake macros for building properly.- disable gcov coverage recording Gcov is a development tool, it slows down execution and creates coverage data that is not useful to users of this library.- Do not use macro for make install as it doesn't work on SLE- Compatibility Obsoletes/Provides- Merge with package by Tomas Chvatal (to make it work with LO)- Fix library requirement for devel package due to wrong soversion- update to 1.1.2, see https://dev.mysql.com/doc/relnotes/connector-cpp/en/ccpp-news-1-1-1.html https://dev.mysql.com/doc/relnotes/connector-cpp/en/ccpp-news-1-1-2.html - libmysqlcppconn5 changed to libmysqlcppconn6 (number bump) - spec file cleanup - removed patch for driver/mysql_art_resultset.cpp from mysql-connector-cpp-1.1.0-gcc44.patch - added mysql-connector-cpp-1.1.0-disable_tests_and_examples.patch- license update: SUSE-GPL-2.0-with-FLOSS-exception GPL has FLOSS exception.- change license to be in spdx.org format- updated to version 1.1.0, see http://forge.mysql.com/wiki/Connector_C%2B%2B#MySQL_Connector.2FC.2B.2B_1.1.0_GA_.2813.09.2010.29- updated patches to apply with fuzz=0- Better description (bnc#522682)- updated to version 1.0.5 * Changed the interface of sql::ConnectionMetaData, sql::ResultSetMetaData and sql::ParameterMetaData to have a protected destructor. In this way the client code doesn't need, and won't be able, to destruct the metadata objects returned by the connector. The connector will handle their destruction. This enables statements like : connection->getMetaData->getSchema(); without the result of leaking memory because we lost the pointer returned by getMetaData(). (Lawrin, Andrey) * Large overhaul of the code to improve the memory management to not leak in exceptional situations. Big improvement compared to Beta1. (Andrey) * Fixed the interface of sql::Driver and sql::Connection so they accept the options map by alias instead of by value. (Andrey) * Changed the return type of sql::SQLException::getSQLState() from std::string to const char * to be consistent with std::exception::what(). (Andrey) * Implemented getResultSetType() and setResultSetType() for Statement. Used are TYPE_FORWARD_ONLY, which means unbuffered result set and TYPE_SCROLL_INSENSITIVE, which means buffered result set. (Andrey) * Implemented getResultSetType() for PreparedStatement. The setter is not implemented because currently PreparedStatement can't do refetching and storing the result means the bind buffers will be correct. (Andrey) * Added "defaultStatementResultType" to MySQL_Connection::setClientOption() as an option. Also the method now returns `sql::Connection *`. (Andrey) * Added Result::getType() and implemented it in the three result set classes. (Andrey) * Enabled tracing functionality when building with VC8 and up (VS2005 and up). (Andrey) * Added better support for named pipes, on Windows. Use pipe:// and add the path to the pipe. Shared memory connections are currently not supported. (Andrey) * Fixed a bug in MySQL_Connection::setSessionVariable() which led to exception being thrown. (Andrey)- fixed compilation using gcc44- initial version of MySQL Connector/C++ package (version 1.0.4 beta)/sbin/ldconfig/sbin/ldconfigwildcard3 15059062641.1.8-8.11.1.8-8.1libmysqlcppconn.so.7libmysqlcppconn.so.7.1.1.8/usr/lib64/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Maintenance:7292/openSUSE_Leap_42.3_Update/2a06df19ed6463f113dc0c800efa8397-mysql-connector-cpp.openSUSE_Leap_42.3_Updatedrpmlzma5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=65f8738b6618447b68d7a33a4f3d0dc7b7e53857, strippedPR RRRRRR RR RRRR R RC1Fbn(b:C?@]"k%wdN䘈lo~u*bÜej3AgWz>8zU:=}"C:5~q멹Z'm<~ggI~I?·kיͽ8| d8t0Oh`SPGw@] {Rh^ns֐B!õi:˝ aeEDg JM- ),$j)17wwcjtYCF:Y5]1p?HQ|ſg%y7577 WnÏ:ȒM(% z]"c CWM Zh"K9|Ba(2 ֞'I \G 6TM@jC:YйkI4G gSb'SuV~fca(2킄5dS+`i% 'sD 9VVPϬ(k$7;- P;un:b{4OX-Ơ=yi=@@An8\Q4:6yukˢAs 7 W?Tn>G?otw Dj7c;asfL`g +dd⏹I}*rk3) #=DoCH5`HU(Q`I҄}ۦ可&ڌW&b}fLuAr)20LJ̙ɚخtu]5R՚}}|^5K]Nݪ Fc`GЇu#'N/' wd_2 zuD$}a{3Nq9ʉ%tC$} Zd[0S =<(WG#<I!