MySQL Forums
Forum List  »  Connector/C++

Mysql connector c++ 8.0. How to work with datetime?
Posted by: e s
Date: January 22, 2020 08:24AM

I have table like:

CREATE TABLE `table_name` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`date_update` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

I have C++ code:

RowResult res = mysession.sql("SELECT id, date_update FROM table_name").execute();

Row row;
while ((row = res.fetchOne())) {
cout << "Id: " << row[0] << endl; // Ok
std::string data_update = row[1]; // How to get datetime here?
// row[1].getType() == Type::Document(8)
}

row[1] - is variable with type mysqlx::Value with type Document.
How should i read field date_update?

Options: ReplyQuote




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.