![]() |
Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
|
A container for all state needed to execute a database query, such as the query itself, parameters for prepared statements, driver parameters, etc. More...
#include <duckdb.hpp>

Public Attributes | |
| void * | private_data |
| Opaque implementation-defined state. This field is NULLPTR iff the connection is unintialized/freed. | |
| struct AdbcDriver * | private_driver |
| The associated driver (used by the driver manager to help track state). | |
A container for all state needed to execute a database query, such as the query itself, parameters for prepared statements, driver parameters, etc.
Statements may represent queries or prepared statements.
Statements may be used multiple times and can be reconfigured (e.g. they can be reused to execute multiple different queries). However, executing a statement (and changing certain other state) will invalidate result sets obtained prior to that execution.
Multiple statements may be created from a single connection. However, the driver may block or error if they are used concurrently (whether from a single thread or multiple threads).
Statements are not required to be thread-safe, but they can be used from multiple threads so long as clients take care to serialize accesses to a statement.