All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sqlite.FunctionFlags Maven / Gradle / Ivy

The newest version!
package org.sqlite;

/**
 * User defined function creation flags.
 * @see org.sqlite.Conn#createScalarFunction(String, int, int, SQLite.ScalarCallback)
 * @see Text Encodings
 * @see UDF
 */
public interface FunctionFlags {
	int SQLITE_UTF8 = 1;
	int SQLITE_UTF16LE = 2;
	int SQLITE_UTF16BE = 3;
	int SQLITE_UTF16 = 4;
	/** @see deterministic */
	int SQLITE_DETERMINISTIC = 0x800;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy