 | SqliteSpellfixExtensionLoaderSetLibraryInformation Method |
Sets the library name and optionally entry point to load the spellfix extension into the sqlite instance in memory.
Namespace: SanteDB.OrmLite.Providers.SqliteAssembly: SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 3.0.2081-alpha+d0a78774d3f97b9193d2ae2fef6d129ea9f29519
Syntaxpublic static void SetLibraryInformation(
string libraryName,
string entryPoint = null
)
Public Shared Sub SetLibraryInformation (
libraryName As String,
Optional entryPoint As String = Nothing
)
public:
static void SetLibraryInformation(
String^ libraryName,
String^ entryPoint = nullptr
)
static member SetLibraryInformation :
libraryName : string *
?entryPoint : string
(* Defaults:
let _entryPoint = defaultArg entryPoint null
*)
-> unit Parameters
- libraryName String
- The library name that contains the spellfix library.
- entryPoint String (Optional)
- Optinally the entry point to use when loading the spellfix library. If this is null, the default entry point in sqlite is used.
See Also