Replies: 2 comments 4 replies
-
@Myjestic -- you are launch |
Beta Was this translation helpful? Give feedback.
2 replies
-
@Myjestic -- Have you tried the latest release of SimplySql? As far as I can tell, I've fixed the issue where other providers were loading when they didn't need to. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I just installed the newest version 2.0.2.70 on Powershell Core 7.4.2.
This is my connection script to MariaDB:
$c = [pscredential]::new($dbUser, (ConvertTo-SecureString -Force -AsPlainText $dbPass)) Open-MySqlConnection -connectionname 'MariaDB' -Server $dbHost -Database $dbName -Credential $c $testconnection = Test-SqlConnection -ConnectionName 'MariaDB' Write-Host $testconnection
Dot Net installed:
ComputerName : localhost
And that is the error I get:
Could not load type 'Oracle.ManagedDataAccess.Client.OracleDBAPrivilege' from assembly | 'Oracle.ManagedDataAccess, Version=4.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342'.
How can I solve this issue? What is the reason?
Beta Was this translation helpful? Give feedback.
All reactions