* @copyright 2012 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 4.1.0 */ namespace Query; /** * Enum of query types */ enum QueryType: string { case SELECT = 'select'; case INSERT = 'insert'; case INSERT_BATCH = 'insert_batch'; case UPDATE = 'update'; case UPDATE_BATCH = 'update_batch'; case DELETE = 'delete'; }