Re: connector 8 Session exception
Posted by:
Luis Silva
Date: April 26, 2019 03:29AM
Also, please add exception handler to your code to get the error:
int main()
try {
Session sess("localhost", 33060, "user", "password");
}
catch (const Error &err)
{
cout <<"ERROR: " <<err <<endl;
}
catch (std::exception &ex)
{
cout <<"STD EXCEPTION: " <<ex.what() <<endl;
}
catch (const char *ex)
{
cout <<"EXCEPTION: " <<ex <<endl;
}
Subject
Views
Written By
Posted
2900
April 23, 2019 07:11PM
1259
April 24, 2019 05:02PM
1223
April 25, 2019 04:24PM
1186
April 26, 2019 03:08AM
Re: connector 8 Session exception
1382
April 26, 2019 03:29AM
1374
April 26, 2019 07:56AM
1187
April 26, 2019 08:12AM
1300
April 26, 2019 11:04AM
1234
April 26, 2019 11:07AM
1252
April 30, 2019 08:16AM
2441
May 05, 2019 11:40AM
1420
May 06, 2019 04:05AM
1160
November 27, 2019 10:51PM
1037
November 28, 2019 03:49AM
1265
February 03, 2020 12:21PM
1005
February 04, 2020 09:13AM
1100
February 07, 2020 01:03PM
972
February 11, 2020 12:03PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.