Skip to content

Commit 77f06c5

Browse files
committed
Some cleanup
1 parent 55ee4f5 commit 77f06c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/mysql/unsafe/commands.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ void queryRowTuple(T...)(Connection conn, const(char[]) sql, ref T args)
379379
void queryRowTuple(T...)(Connection conn, ref Prepared prepared, ref T args)
380380
{
381381
auto preparedInfo = conn.registerIfNeeded(prepared.sql);
382-
SC.queryRowTupleImpl(conn, prepared.getExecQueryImplInfo(preparedInfo.statementId), args);
383-
prepared._lastInsertID = conn.lastInsertID; // Conceivably, this might be needed when multi-statements are enabled.
382+
SC.queryRowTupleImpl(conn, prepared.safe.getExecQueryImplInfo(preparedInfo.statementId), args);
383+
prepared.safe._lastInsertID = conn.lastInsertID; // Conceivably, this might be needed when multi-statements are enabled.
384384
}
385385

386386
///ditto

0 commit comments

Comments
 (0)