Go to the source code of this file.
Provides functions to turn a DtVrfDatabaseEvent and it's parameters into an SQL query.
Creates an SQL query to create a table to hold events of this type.
Creates an SQLite query to insert multiple database events into the appropriate table, ignoring errors on conflicts. NOTE: Only works if all events have the same event type!
Creates a MySQL query to insert multiple database events into the appropriate table, ignoring errors on conflicts. NOTE: Only works if all events have the same event type!
Creates an SQLite query to insert multiple database events into the appropriate table, updating the existing entry on conflicts. NOTE: Only works if all events have the same event type!
Creates a MySQL query to insert multiple database events into the appropriate table, updating the existing entry on conflicts. NOTE: Only works if all events have the same event type!
Creates an SQL query to update an existing database event in the appropriate table. Requires the event to have at least one parameter designated as a primary key.
Creates a string to be used by sqlCreateTableQuery() when constructing a table to specify the correct name and type for the given parameter.
Creates a string to be used by an insert query when inserting an event to specify the correct name for the given parameter.
Creates a string to be used by an insert query when inserting an event to specify the correct value for the given parameter.
Creates a string to be used by an insert query needs to update a parameter when a duplicate entry is found.