Platforms to show: All Mac Windows Linux Cross-Platform

Back to InternalSQLiteLibraryMBS module.

InternalSQLiteLibraryMBS.ICUEnabled as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property SQL MBS SQL Plugin 21.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Whether ICU libraries are enabled.

If MBS Plugin can find International Components for Unicode library files, we can load them and use them for proper unicode handling in SQLite.
Default is true to enable them, if possible.
(Read and Write property)

InternalSQLiteLibraryMBS.ICULoaded as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property SQL MBS SQL Plugin 21.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Whether ICU libraries are loaded.

If MBS Plugin can find International Components for Unicode library files, we can load them and use them for proper unicode handling in SQLite.
(Read only property)

Some examples using this property:

InternalSQLiteLibraryMBS.ICUUsed as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property SQL MBS SQL Plugin 21.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Whether ICU libraries have been used.

Once SQLite is initialized, we set this to 1 if we passed the functionality to SQLite.
Starts with false and should later turn true if ICU libraries are loaded and enabled for usage.
(Read only property)

Some examples using this property:

InternalSQLiteLibraryMBS.MemoryHighwater as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property SQL MBS SQL Plugin 18.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Queries high water memory usage mark.
Example
MsgBox "SQLite uses "+_
str(InternalSQLiteLibraryMBS.MemoryUsed)+_
" bytes and has a high mark of "+_
str(InternalSQLiteLibraryMBS.MemoryHighwater)+" bytes."

(Read only property)

InternalSQLiteLibraryMBS.MemoryUsed as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property SQL MBS SQL Plugin 18.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Queries current memory usage.
Example
MsgBox "SQLite uses "+_
str(InternalSQLiteLibraryMBS.MemoryUsed)+_
" bytes and has a high mark of "+_
str(InternalSQLiteLibraryMBS.MemoryHighwater)+" bytes."

(Read only property)

InternalSQLiteLibraryMBS.Path as String   New in 24.1

Type Topic Plugin Version macOS Windows Linux iOS Targets
property SQL MBS SQL Plugin 24.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Queries file path to the plugin library.

Allows you to query path for plugin library, so you can pass it to SQLite to load as extension.
(Read only property)

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


The biggest plugin in space...