I'm installing Creatio 8.2.2 Studio MSSQL, but after everything is done, I get an error when logging in
Error: System.Exception: Library e_sqlite3 not found
Like
According to the post below, it could be that you need to possibly modify the permissions of the folders under Terrasoft.WebApp. See https://community.creatio.com/questions/error-logging-local-deployment-creatio
Ryan
Ryan Farley,
Still getting the same error, i think that is different case maybe
System.Exception: Library e_sqlite3 not found\r\nplat: win\r\nsuffix: DLL\r\npossibilities (3):\r\n
Ryan Farley,
Ahmad Bagus Ariyanto,
Tomasz Sawicki,
Greetings!
The error you're encountering is related to your system being unable to find or load the e_sqlite3 library. This can be caused by several reasons. Please note that this issue is not related to the Creatio system itself but rather to a Microsoft component.
This article might help you: Microsoft.Data.Sqlite library 'e_sqlite3' not found:
https://stackoverflow.com/questions/65750542/microsoft-data-sqlite-library-e-sqlite3-not-found
Below are a few steps that may help resolve the issue (please note that these are general recommendations, and since the issue is related to Microsoft components
https://www.nuget.org/packages, you might also find assistance on forums or by contacting Microsoft support):
1. Make sure the e_sqlite3 library is present.
2. Install or update the SQLitePCLRaw.bundle_e_sqlite3 package. You can do this via the NuGet Package Manager using the following command:
Install-Package SQLitePCLRaw.bundle_e_sqlite3
https://www.nuget.org/packages/SQLitePCLRaw.bundle_e_sqlite3/
3. Ensure that your target platform is compatible with the library. For example, if you're building for x86, make sure you’re using the correct version of the library (x86 or x64).
Installing or updating the package via command line (cmd):
1. Open the command prompt:
On Windows, press Win + R, type cmd, and press Enter.
2. Navigate to your project directory: Use the cd command to change to the folder where your project is located.
For example, cd path\to\your\project
3. Install or update the package: If you have NuGet CLI installed, you can run:
nuget install SQLitePCLRaw.bundle_e_sqlite3
However, if you're using .NET Core or .NET 5/6/7, it’s recommended to use the dotnet CLI instead:
dotnet add package SQLitePCLRaw.bundle_e_sqlite3
This command will automatically add the package to your project and update the .csprojfile.
Example commands:
1. Navigate to your project directory:
cd C:\Projects\MyApp
2. Install the package: dotnet add package SQLitePCLRaw.bundle_e_sqlite3
After successful execution, dotnet will download and install the package. If everything goes well, you’ll see a message confirming the package has been added to your project.
Regards,
Orkhan