ErrorsTable

open class ErrorsTable

This stores unhandled errors that occured on the device

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
abstract class Schema : BaseColumns

Properties

Link copied to clipboard
val CREATE_TABLE_SQL: String = "CREATE TABLE IF NOT EXISTS Errors (_id INTEGER PRIMARY KEY, jsonData TEXT )"
Link copied to clipboard
val DELETE_TABLE_SQL: String = "DROP TABLE IF EXISTS Errors"

Functions

Link copied to clipboard
open fun DeleteError(id: Long)
Link copied to clipboard
Link copied to clipboard
open fun InsertError(text: String)