Platforms to show: All Mac Windows Linux Cross-Platform

Back to JavaConnectionMBS class.

JavaConnectionMBS.TransactionIsolation as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Attempts to change the transaction isolation level for this Connection object to the one given.

The constants defined in the interface Connection are the possible transaction isolation levels.
Note: If this method is called during a transaction, the result is implementation-defined.

Parameters:
level - one of the following Connection constants: Connection.TRANSACTION_READ_UNCOMMITTED, Connection.TRANSACTION_READ_COMMITTED, Connection.TRANSACTION_REPEATABLE_READ, or Connection.TRANSACTION_SERIALIZABLE. (Note that Connection.TRANSACTION_NONE cannot be used because it specifies that transactions are not supported.)
(Read and Write computed property)

JavaConnectionMBS.TRANSACTION_NONE as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
A constant indicating that transactions are not supported.

JavaConnectionMBS.TRANSACTION_READ_COMMITTED as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur.

This level only prohibits a transaction from reading a row with uncommitted changes in it.

JavaConnectionMBS.TRANSACTION_READ_UNCOMMITTED as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.

This level allows a row changed by one transaction to be read by another transaction before any changes in that row have been committed (a "dirty read"). If any of the changes are rolled back, the second transaction will have retrieved an invalid row.

JavaConnectionMBS.TRANSACTION_REPEATABLE_READ as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur.

This level prohibits a transaction from reading a row with uncommitted changes in it, and it also prohibits the situation where one transaction reads a row, a second transaction alters the row, and the first transaction rereads the row, getting different values the second time (a "non-repeatable read").

JavaConnectionMBS.TRANSACTION_SERIALIZABLE as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
A constant indicating that dirty reads, non-repeatable reads and phantom reads are prevented.

This level includes the prohibitions in TRANSACTION_REPEATABLE_READ and further prohibits the situation where one transaction reads all rows that satisfy a WHERE condition, a second transaction inserts a row that satisfies that WHERE condition, and the first transaction rereads for the same condition, retrieving the additional "phantom" row in the second read.

JavaConnectionMBS.typeARRAY as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type ARRAY.

JavaConnectionMBS.typeBIGINT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BIGINT.
Example
Var d as JavaConnectionMBS
MsgBox str(d.typeBIGINT)

JavaConnectionMBS.typeBINARY as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BINARY.

JavaConnectionMBS.typeBIT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BIT.

Some examples using this method:

JavaConnectionMBS.typeBLOB as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BLOB.

JavaConnectionMBS.typeCHAR as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type CHAR.

JavaConnectionMBS.typeCLOB as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type CLOB.

JavaConnectionMBS.typeDATE as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DATE.

JavaConnectionMBS.typeDECIMAL as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DECIMAL.

JavaConnectionMBS.typeDISTINCT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DISTINCT.

JavaConnectionMBS.typeDOUBLE as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DOUBLE.

JavaConnectionMBS.typeFLOAT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type FLOAT.

Some examples using this method:

JavaConnectionMBS.typeINTEGER as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type INTEGER.

Some examples using this method:

JavaConnectionMBS.typeJAVA_OBJECT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type JAVA_OBJECT.

JavaConnectionMBS.typeLONGVARBINARY as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGVARBINARY.

JavaConnectionMBS.typeLONGVARCHAR as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGVARCHAR.

JavaConnectionMBS.typeNULL as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NULL.

JavaConnectionMBS.typeNUMERIC as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NUMERIC.

JavaConnectionMBS.typeOTHER as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language that indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.

JavaConnectionMBS.typeREAL as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REAL.

Some examples using this method:

JavaConnectionMBS.typeREF as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REF.

JavaConnectionMBS.typeSMALLINT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type SMALLINT.

Some examples using this method:

JavaConnectionMBS.typeSTRUCT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type STRUCT.

JavaConnectionMBS.typeTIME as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIME.

JavaConnectionMBS.typeTIMESTAMP as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIMESTAMP.

JavaConnectionMBS.typeTINYINT as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TINYINT.

Some examples using this method:

JavaConnectionMBS.typeVARBINARY as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type VARBINARY.

JavaConnectionMBS.typeVARCHAR as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type VARCHAR.

JavaConnectionMBS.TYPE_FORWARD_ONLY as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant indicating the type for a ResultSet object whose cursor may move only forward.

JavaConnectionMBS.TYPE_SCROLL_INSENSITIVE as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes made by others.

JavaConnectionMBS.TYPE_SCROLL_SENSITIVE as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes made by others.

The items on this page are in the following plugins: MBS Java Plugin.


The biggest plugin in space...