Platforms to show: All Mac Windows Linux Cross-Platform

Back to JavaResultSetMBS class.

Next items

JavaResultSetMBS.absolute(row as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Moves the cursor to the given row number in this ResultSet object.
Example
dim db as JavaConnectionMBS // your database
dim r as JavaResultSetMBS
dim s as JavaStatementMBS

// check second row
s=db.createStatement
r=s.executeQuery("SELECT * from myTable")

if r<>Nil then
if r.absolute(2) then
MsgBox str(R.getInt("test_id"))+" "+r.getString("test_val")
end if
end if

See the java documentation for details on java.sql.ResultSet.absolute.

Some examples using this method:

JavaResultSetMBS.afterLast

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Moves the cursor to the end of this ResultSet object, just after the last row.

See the java documentation for details on java.sql.ResultSet.afterLast.

JavaResultSetMBS.beforeFirst

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Moves the cursor to the front of this ResultSet object, just before the first row.

See the java documentation for details on java.sql.ResultSet.beforeFirst.

JavaResultSetMBS.cancelRowUpdates

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Cancels the updates made to the current row in this ResultSet object.

This method may be called after calling an updater method(s) and before calling the method updateRow to roll back the updates made to a row. If no updates have been made or updateRow has already been called, this method has no effect.

See the java documentation for details on java.sql.ResultSet.cancelRowUpdates.

JavaResultSetMBS.clearWarnings

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Clears all warnings reported on this ResultSet object.

See the java documentation for details on java.sql.ResultSet.clearWarnings.

JavaResultSetMBS.CLOSE_CURSORS_AT_COMMIT 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 that ResultSet objects should be closed when the method Connection.commit is called.

JavaResultSetMBS.CONCUR_READ_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 concurrency mode for a ResultSet object that may NOT be updated.

JavaResultSetMBS.CONCUR_UPDATABLE 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 concurrency mode for a ResultSet object that may be updated.

JavaResultSetMBS.Constructor   Private

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 15.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
The private constructor.

JavaResultSetMBS.deleteRow

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Deletes the current row from this ResultSet object and from the underlying database.

See the java documentation for details on java.sql.ResultSet.deleteRow.

JavaResultSetMBS.FetchDirection 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
Gives a hint as to the direction in which the rows in this ResultSet object will be processed.

The initial value is determined by the Statement object that produced this ResultSet object. The fetch direction may be changed at any time.

Parameters:
direction - an int specifying the suggested fetch direction; one of ResultSet.FETCH_FORWARD, ResultSet.FETCH_REVERSE, or ResultSet.FETCH_UNKNOWN
(Read and Write computed property)

JavaResultSetMBS.FetchSize 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
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this ResultSet object.

If the fetch size specified is zero, the JDBC driver ignores the value and is free to make its own best guess as to what the fetch size should be. The default value is set by the Statement object that created the result set. The fetch size may be changed at any time.

Parameters:
rows - the number of rows to fetch
(Read and Write computed property)

JavaResultSetMBS.FETCH_FORWARD 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 that the rows in a result set will be processed in a forward direction; first-to-last.

This constant is used by the method setFetchDirection as a hint to the driver, which the driver may ignore.

JavaResultSetMBS.FETCH_REVERSE 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 that the rows in a result set will be processed in a reverse direction; last-to-first.

This constant is used by the method setFetchDirection as a hint to the driver, which the driver may ignore.

JavaResultSetMBS.FETCH_UNKNOWN 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 that the order in which rows in a result set will be processed is unknown.

This constant is used by the method setFetchDirection as a hint to the driver, which the driver may ignore.

JavaResultSetMBS.findColumn(column as string) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Maps the given ResultSet column name to its ResultSet column index.
Example
dim r as JavaResultSetMBS // your result set
MsgBox str(r.findColumn("test_id"))+" "+str(r.findColumn("test_val"))

Returns 0 on any error.
See the java documentation for details on java.sql.ResultSet.findColumn.

JavaResultSetMBS.first as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Moves the cursor to the first row in this ResultSet object.

See the java documentation for details on java.sql.ResultSet.first.

JavaResultSetMBS.getAsciiStream(column as Integer) as JavaInputStreamMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 13.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.

Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters. The value can then be read in chunks from the stream. This method is particularly suitable for retrieving large LONGVARCHAR values. The JDBC driver will do any necessary conversion from the database format into ASCII.
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a getter method implicitly closes the stream. Also, a stream may return 0 when the method InputStream.available is called whether there is data available or not.

Parameters:
column: the first column is 1, the second is 2, ...

Returns a Java input stream that delivers the database column value as a stream of one-byte ASCII characters; if the value is SQL NULL, the value returned is null

Throws:
SQLException - if the columnIndex is not valid; if a database access error occurs or this method is called on a closed result set.

See also:

JavaResultSetMBS.getAsciiStream(column as string) as JavaInputStreamMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 13.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.

Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters. The value can then be read in chunks from the stream. This method is particularly suitable for retrieving large LONGVARCHAR values. The JDBC driver will do any necessary conversion from the database format into ASCII.
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a getter method implicitly closes the stream. Also, a stream may return 0 when the method available is called whether there is data available or not.

Parameters:
column: the label for the column specified with the SQL AS clause. If the SQL AS clause was not specified, then the label is the name of the column

Returns a Java input stream that delivers the database column value as a stream of one-byte ASCII characters. If the value is SQL NULL, the value returned is null.

Throws:
SQLException - if the columnLabel is not valid; if a database access error occurs or this method is called on a closed result set

See also:

JavaResultSetMBS.getBinaryStream(column as Integer) as JavaInputStreamMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 13.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.

Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes. The value can then be read in chunks from the stream. This method is particularly suitable for retrieving large LONGVARBINARY values.
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a getter method implicitly closes the stream. Also, a stream may return 0 when the method InputStream.available is called whether there is data available or not.

Parameters:
column: the first column is 1, the second is 2, ...

Returns a Java input stream that delivers the database column value as a stream of uninterpreted bytes; if the value is SQL NULL, the value returned is null

Throws:
SQLException - if the columnIndex is not valid; if a database access error occurs or this method is called on a closed result set

See also:

Some examples using this method:

JavaResultSetMBS.getBinaryStream(column as string) as JavaInputStreamMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 13.1 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.

Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes. The value can then be read in chunks from the stream. This method is particularly suitable for retrieving large LONGVARBINARY values.
Note: All the data in the returned stream must be read prior to getting the value of any other column. The next call to a getter method implicitly closes the stream. Also, a stream may return 0 when the method available is called whether there is data available or not.

Parameters:
column: the label for the column specified with the SQL AS clause. If the SQL AS clause was not specified, then the label is the name of the column

Returns a Java input stream that delivers the database column value as a stream of uninterpreted bytes; if the value is SQL NULL, the result is null.

Throws SQLException - if the columnLabel is not valid; if a database access error occurs or this method is called on a closed result set

See also:

JavaResultSetMBS.getBlob(column as Integer) as JavaBlobMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.

Column: the first column is 1, the second is 2, ...

Returns a Blob object representing the SQL BLOB value in the specified column

See also:

JavaResultSetMBS.getBlob(column as string) as JavaBlobMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.

column: the name of the column from which to retrieve the value
Returns a Blob object representing the SQL BLOB value in the specified column

See also:

JavaResultSetMBS.getBoolean(column as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as a boolean.

See the java documentation for details on java.sql.ResultSet.getBoolean.

See also:

JavaResultSetMBS.getBoolean(column as string) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as a boolean.

See the java documentation for details on java.sql.ResultSet.getBoolean.

See also:

JavaResultSetMBS.getByte(column as Integer) 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
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.

Parameters:
columnIndex - the first column is 1, the second is 2, ...
Returns:
the column value; if the value is SQL NULL, the value returned is 0

See also:

JavaResultSetMBS.getByte(column as string) 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
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.

Parameters:
columnName - the SQL name of the column
Returns:
the column value; if the value is SQL NULL, the value returned is 0

See also:

JavaResultSetMBS.getBytes(column as Integer) as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 11.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.

column: the first column is 1, the second is 2, ...
the plugin gives you the bytes as a string with no encoding.

See also:

JavaResultSetMBS.getBytes(column as string) as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 11.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.

the plugin gives you the bytes as a string with no encoding.

See also:

JavaResultSetMBS.getClob(column as Integer) as JavaClobMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.

Column: the first column is 1, the second is 2, ...
Returns a Clob object representing the SQL CLOB value in the specified column

See also:

JavaResultSetMBS.getClob(column as string) as JavaClobMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.

column: the name of the column from which to retrieve the value
Returns a Clob object representing the SQL CLOB value in the specified column

See also:

JavaResultSetMBS.getConcurrency 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
Retrieves the concurrency mode of this ResultSet object.

The concurrency used is determined by the Statement object that created the result set.
Returns:
the concurrency type, either ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE

JavaResultSetMBS.getCursorName as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the name of the SQL cursor used by this ResultSet object.

In SQL, a result table is retrieved through a cursor that is named. The current row of a result set can be updated or deleted using a positioned update/delete statement that references the cursor name. To insure that the cursor has the proper isolation level to support update, the cursor's SELECT statement should be of the form SELECT FOR UPDATE. If FOR UPDATE is omitted, the positioned updates may fail.

The JDBC API supports this SQL feature by providing the name of the SQL cursor used by a ResultSet object. The current row of a ResultSet object is also the current row of this SQL cursor.

Note: If positioned update is not supported, a SQLException is thrown.

Returns:
the SQL name for this ResultSet object's cursor

JavaResultSetMBS.getDouble(column as Integer) as Double

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as a double.

See the java documentation for details on java.sql.ResultSet.getDouble.

See also:

JavaResultSetMBS.getDouble(column as string) as Double

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as a double.

See the java documentation for details on java.sql.ResultSet.getDouble.

See also:

JavaResultSetMBS.getFloat(column as Integer) as single

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.

Parameters:
columnIndex - the first column is 1, the second is 2, ...
Returns:
the column value; if the value is SQL NULL, the value returned is 0

See also:

JavaResultSetMBS.getFloat(column as string) as single

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.5 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.

Parameters:
columnName - the SQL name of the column
Returns:
the column value; if the value is SQL NULL, the value returned is 0

See also:

JavaResultSetMBS.getInt(column as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as an int.

Parameters:
columnIndex - the first column is 1, the second is 2, ...
Returns:
the column value; if the value is SQL NULL, the value returned is 0

See the java documentation for details on java.sql.ResultSet.getInt.

See also:

JavaResultSetMBS.getInt(column as string) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as an int.
Example
dim r as JavaResultSetMBS // your result set
MsgBox str(R.getInt("test_id"))+" "+r.getString("test_val")

See the java documentation for details on java.sql.ResultSet.getInt.

See also:

JavaResultSetMBS.getLong(column as Integer) as int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as an int64.

See the java documentation for details on java.sql.ResultSet.getLong.

See also:

JavaResultSetMBS.getLong(column as string) as int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as an int64.

See the java documentation for details on java.sql.ResultSet.getLong.

See also:

JavaResultSetMBS.getMetaData as JavaResultSetMetaDataMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the number, types and properties of this ResultSet object's columns.

Returns:
the description of this ResultSet object's columns

JavaResultSetMBS.getRow as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Retrieves the current row number.

See the java documentation for details on java.sql.ResultSet.getRow.

JavaResultSetMBS.getShort(column as Integer) 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
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

Parameters:
columnIndex - the first column is 1, the second is 2, ...
Returns:
the column value; if the value is SQL NULL, the value returned is 0.

See also:

JavaResultSetMBS.getShort(column as string) 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
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

Parameters:
columnName - the SQL name of the column
Returns:
the column value; if the value is SQL NULL, the value returned is 0

See also:

JavaResultSetMBS.getString(column as Integer) as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as a String.

See the java documentation for details on java.sql.ResultSet.getString.

See also:

JavaResultSetMBS.getString(column as string) as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Java Database MBS Java Plugin 8.3 ✅ Yes ✅ Yes ✅ Yes ❌ No Desktop, Console & Web
Gets the value of the designated column in the current row of this ResultSet object as a String.
Example
dim r as JavaResultSetMBS // your result set
MsgBox str(R.getInt("test_id"))+" "+r.getString("test_val")

See the java documentation for details on java.sql.ResultSet.getString.

See also:

JavaResultSetMBS.getType 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
Retrieves the type of this ResultSet object.

The type is determined by the Statement object that created the result set.
Returns:
ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE, or ResultSet.TYPE_SCROLL_SENSITIVE

Next items

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


The biggest plugin in space...