C++ app MySQL odbc database connection error: terminate called after throwing an instance of 'otl_tmpl_exception<>
问题 I am currently debugging a containerized C++ application, it seems like it's throwing exception and complaining about the database connection, error: terminate called after throwing an instance of 'otl_tmpl_exception<odbc::otl_exc, odbc::otl_conn, odbc::otl_cur>' Aborted The code in main() is below: int main(int ac, char *av[]) { auto otl_connect = std::make_unique<odbc::otl_connect>("Driver={/usr/local/lib/libmyodbc8a.so};server=xxx.x.x.x;port=xxxx;database=xxxx;user=xxx;password=xxx"); std: