7 catch (
const Poco::Exception& ex) {
8 std::cout << ex.displayText() <<
std::endl;
23 *
_pSession <<
"SELECT * FROM `Person` WHERE id = 1", Poco::Data::Keywords::into(
people) ,Poco::Data::Keywords::now;
25 catch (
const Poco::Exception& ex) {
26 std::cout << ex.displayText() <<
std::endl;
33 *
_pSession <<
"CREATE TABLE `Person` (Id INTEGER(3),Name VARCHAR(30))", Poco::Data::Keywords::now;
35 catch (
const Poco::Exception& ex) {
36 std::cout << ex.displayText() <<
std::endl;
43 *
_pSession <<
"DROP TABLE IF EXISTS `Person`" , Poco::Data::Keywords::now;
45 catch (
const Poco::Exception& ex) {
46 std::cout << ex.displayText() <<
std::endl;
53 *
_pSession <<
"DELETE FROM `Person` WHERE 1" , Poco::Data::Keywords::now;
55 catch (
const Poco::Exception& ex) {
56 std::cout << ex.displayText() <<
std::endl;
63 *
_pSession <<
"INSERT INTO `Person` VALUES (?,?)" , Poco::Data::Keywords::use(
people), Poco::Data::Keywords::now;
66 catch (
const Poco::Exception& ex) {
67 std::cout << ex.displayText() <<
std::endl;
74 *
_pSession <<
"INSERT INTO `Person` VALUES (?,?)" , Poco::Data::Keywords::use(
objects), Poco::Data::Keywords::now;
77 catch (
const Poco::Exception& ex) {
78 std::cout << ex.displayText() <<
std::endl;
85 *
_pSession <<
"SELECT * FROM `Person`", Poco::Data::Keywords::into(
people) ,Poco::Data::Keywords::now;
87 catch (
const Poco::Exception& ex) {
88 std::cout << ex.displayText() <<
std::endl;
95 *
_pSession <<
"SELECT Name FROM `Person`", Poco::Data::Keywords::into(
namesOfPersons) ,Poco::Data::Keywords::now;
97 catch (
const Poco::Exception& ex) {
98 std::cout << ex.displayText() <<
std::endl;
105 *
_pSession <<
"SELECT id,Name FROM `Person` WHERE id = 3", Poco::Data::Keywords::into(
objects) ,Poco::Data::Keywords::now;
107 catch (
const Poco::Exception& ex) {
108 std::cout << ex.displayText() <<
std::endl;
115 *
_pSession <<
"SELECT COUNT(*) FROM `Person`", Poco::Data::Keywords::into(count) , Poco::Data::Keywords::now;
117 catch (
const Poco::Exception& ex) {
118 std::cout << ex.displayText() <<
std::endl;