Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » SQLite » SQLite_Write

SQLite_Write


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: STD.h
Namespace: avl
Module: FoundationLite

Writes a value to the SQLite database.

Syntax

void avl::SQLite_Write
(
	const atl::File& inFile,
	const atl::String& inTableName,
	const atl::String& inColumnName,
	const atl::String& inQueriedColumn,
	const atl::String& inQueryValue,
	const atl::String& inData
)

Parameters

Name Type Default Description
Input value inFile const File& Path to an SQLite database file.
Input value inTableName const String& Name of the table to access.
Input value inColumnName const String& Which column will be written to.
Input value inQueriedColumn const String& Column name to compare.
Input value inQueryValue const String& Value to compare.
Input value inData const String& Data to write.

Remarks

SQL database driver software

This filter is intended to cooperate with SQLite database files.

Database file

inFile field should be a path to a database file. The file will be created if it doesn't exist.

Errors

List of possible exceptions:

Error type Description
RuntimeError Not implemented

See Also

  • SQLite_Read – Reads a value from the SQLite database.