我正在使用SQLAPI ++将值插入到我的SQL数据库中,我试图从国际象棋游戏中提取动作并将其作为字符串插入数据库中的动作表中(就像这样(action_id = 1,action_name = e4))。这是我的代码:
int main()
{
SAConnection con;
SACommand cmd;
try
{
con.Connect("test","tester","tester", SA_SQLServer_Client);
cmd.setConnection(&con);
std::ifstream pgnfile("sample.pgn");
pgn::GameCollection games;
pgnfile >> games;
for(pgn::GameCollection::iterator itr=games.begin();itr!=games.end();itr++)
{
pgn::Game game = *itr;
pgn::MoveList move_list=game.moves();
for(pgn::MoveList::iterator itr2=move_list.begin();itr2!=move_list.end();itr2++)
{
pgn::Move move=*itr2;
cmd.setCommandText("insert into actions (action_id,action_name) values (:1,:2)");
cmd.Param(1).setAsLong() = 1;
cmd.Param(2).setAsString() = move.black().str(); // the line that cause the error
}
}
}
}
问题出在那一行:
cmd.Param(2).setAsString() = move.black().str();
它无法从std :: string转换为SAString!那么你能告诉我如何从std :: string转换到SAString吗?
答案 0 :(得分:1)
我不知道您的特定SAString
类,但我相信应该可以从C风格的const char*
字符串构建这样的字符串对象(例如SAString("Connie")
)
给定std::string
,您可以调用其c_str
方法来获取这样的C风格字符串,该字符串可能用于构建您的SAString
。
所以,在你的方法调用序列中:
... = move.black().str();
假设str
返回std::string
,我会调用c_str
:
... = move.black().str().c_str();