mysqlcppconn

  1. nerozero

    C Compiling with mysql cpp connector (-lmysqlcppconn) - core dumped

    Hello, trying to compile a simpliest project with mysql support: #include <iostream> using namespace std; int main(){ cout << "Hello world" << endl; return 0; } compile with g++: $g++ main.cpp -Wall -std=c++11 -lmysqlcppconn -o mysql-test $ ./mysql-test Segmentation fault (core...
Back
Top