OXY API 1.0
OXY API Library Documentation
Loading...
Searching...
No Matches
oxy::update_fn Struct Reference

Function object to update a table in a SQLite database. More...

#include <connection.hpp>

Public Member Functions

void operator() (connection_ptr const &target, std::string const &schema_name, std::string const &table_name) const

Detailed Description

Function object to update a table in a SQLite database.

This function object provides an operator() that takes a connection_ptr, a schema name, and a table name, and performs an update operation on the specified table in the SQLite database.

Member Function Documentation

◆ operator()()

void oxy::update_fn::operator() ( connection_ptr const & target,
std::string const & schema_name,
std::string const & table_name ) const
Parameters
target- The connection pointer to the target SQLite database.
schema_name- The schema name of the target database.
table_name- The name of the table to be updated.