| 47 | } |
| 48 | |
| 49 | int PreparedStatement::execute() { |
| 50 | int code = sqlite3_step(m_statement); |
| 51 | sqlite3_reset(m_statement); |
| 52 | return code; |
| 53 | } |
| 54 | |
| 55 | boost::optional<double> PreparedStatement::execAndReturnFirstDouble() const { |
| 56 | boost::optional<double> value; |