我在表格中添加了一条记录,可以自动增加主键。我没有运气检索这个新值。 MySQL文档说在查询中使用SELECT LAST_INSERT_ID();
。我已经这样做了,但无法检索结果。
根据结果集的元数据,数据类型为BIGINT
,列名为LAST_INSERT_ID()
。 C ++连接器的结果集有getUInt64()
,我假设它是正确的使用方法。
ResultSet
类声明包含以下内容:
virtual uint64_t getUInt64(uint32_t columnIndex) const = 0;
virtual uint64_t getUInt64(const std::string& columnLabel) const = 0;
文档未说明columnIndex
是基于零还是基于零。我尝试了两种情况,并在两种情况下得到sql::InvalidArgumentException
。
使用结果集元数据,我检索了列名并将其直接传递给getUInt64
方法,仍然收到sql::InvalidArgumentException
。这不是一个好的指示(当获取数据时返回的列名称不起作用)。
这是我的代码片段:
std::string query_text;
query_text = "SELECT LAST_INSERT_ID();";
boost::shared_ptr<sql::Statement> query(m_db_connection->createStatement());
boost::shared_ptr<sql::ResultSet> query_results(query->executeQuery(query_text));
long id_value = 0;
if (query_results)
{
ResultSetMetaData p_metadata = NULL;
p_metadata = query_results->getMetaData();
unsigned int columns = 0;
columns = p_metadata->getColumnCount();
std::string column_label;
std::string column_name;
std::string column_type;
for (i = 0; i < columns; ++i)
{
column_label = p_metadata->getColumnLabel(i);
column_name = p_metadata->getColumnName(i);
column_type = p_metadata->getColumnTypeName(i);
wxLogDebug("Column label: \"%s\"\nColumn name: \"%s\"\nColumn type: \"%s\"\n",
column_label.c_str(),
column_name.c_str(),
column_type.c_str());
}
unsigned int column_index = 0;
column_index = query_results->findColumn(column_name);
// The value of column_index is 1 (one).
// All of the following will generate sql::InvalidArgumentException
id_value = query_results->getUInt64(column_index);
id_value = query_results->getUInt64(column_name);
id_value = query_results->getUInt64(0);
id_value = query_results->getUInt64(1);
id_record.set_record_id(id_value);
}
这是调试输出(来自wxLogDebug):
10:50:58: Column label: "LAST_INSERT_ID()"
Column name: "LAST_INSERT_ID()"
Column type: "BIGINT"
我的问题:如何使用MySQL C ++连接器检索LAST_INSERT_ID()?
我是否需要使用准备好的声明?
我在Windows Vista和Windows XP上使用MySQL Connector C ++ 1.0.5和Visual Studio 9(2008)。
答案 0 :(得分:0)
解决。
我在检索数据之前插入了query_results->next()
,并且有效。