Skip to main content
Filter by
Sorted by
Tagged with
2 votes
2 answers
234 views

This question is similar to this one: Using MySql.Data with C# while not making a MySqlConnection Basically, I can see in the documentation: https://dev.mysql.com/doc/connector-net/en/connector-net-...
Corey's user avatar
  • 508
1 vote
0 answers
743 views

I updated Mysql.Data to use new mysql 8.* and since this update queryAsync hangs forever. Here is my method: public async Task<bool> IsLiveResultsEnabled(Guid clientId) { using (...
kosnkov's user avatar
  • 5,987
1 vote
0 answers
412 views

ISSUE While trying to connect to maria db using mysql.data i get this error: System.IndexOutOfRangeException: Index was outside the bounds of the array. at System.Diagnostics.TraceInternal....
monolith_code's user avatar
3 votes
1 answer
2k views

To Upgrade Database: MySql Version 5.5.62 to 8.0.28 .NET Framework: Version 4.5 to 4.8 Entity Framework: Version 5.0.0 to 6.4.4 I followed the steps: Uninstall and remove all existing mySQL dll ...
Lukman Hakim Imran's user avatar
0 votes
1 answer
119 views

I'm writing my app with NET Standard 2.1 and MySql (NuGet pack MySql.Data). The MySqlException doesn't have the property IsTransient so I can't recognize if the exception is temporary. How can I ...
Christian Cascone's user avatar
1 vote
1 answer
92 views

I have a PHP application that currently stores data in MySQL tables in non-conventional format(I assume this is because it is using a non-unicode mysql connection). Example, this is one of the ...
AnKing's user avatar
  • 2,224
1 vote
1 answer
4k views

I have a dependency on MySql.Data in my C# netcoreapp2.1 test project which I use to query for test data from a database, this works fine with v8.0.25, but if I upgrade to v.8.0.26 I get the following ...
Dutts's user avatar
  • 6,261
0 votes
2 answers
227 views

What's the best way to install MySql.Data on azure app service? We have a PHP application that requires some powershell scripts to be run in the background, these scripts must connect to the MySQL ...
Harry's user avatar
  • 1
0 votes
2 answers
1k views

I have been trying my hand at writing the connecting code to connect with the database. It's been going pretty well, but I ran into a strange problem that I cant seem to fix. When I try to add a ...
David Turley's user avatar
1 vote
1 answer
681 views

im new to Entity framework and i dont understand why it is giving me an error in sql syntax , i thought the whole purpose of using EFCore is to handle the sql syntax and abstract all the sql queries ...
ezio's user avatar
  • 569
-1 votes
1 answer
304 views

I want to query my MySQL database by using the MySQL.Data connector. I know that I could use the Entity Framework or other handy tools similiar to ORMs e.g. Dapper. But I would like to try out the &...
Question3r's user avatar
  • 4,082
0 votes
0 answers
117 views

I have a problem with exception appearing while closing my WPF application. HResult=0x80131515 Message=The Read method cannot be called when another read operation is pending. Source=System ...
Venzonite's user avatar
1 vote
0 answers
354 views

Using ADO.NET with the MySql Connector (MySql.Data) driver, I open a new, non-pooled query (no initial catalog/database is specified in connection string) and issue the following query: ALTER TABLE `...
Adam Kamor's user avatar
1 vote
1 answer
726 views

I have a really weird connection problem between C# .net core and AWS Aurora Serverless (MySql). I have a really simple web API that I'm using for testing. One of my endpoints is really simple to ...
John Rousseau's user avatar
0 votes
1 answer
155 views

I'm using VS2019 and today I opened my project to continue working but a strange error occured that I really don't understand. The MySql.Data.MySqlClient namespace shows this: and every mysql commands ...
Kino Filme's user avatar
0 votes
1 answer
48 views

I am trying to get all results with the MySQL.Data Nuget because I am using MariaDB. But my Method just provides the first entry in my DB and does nothing more. Public Function getAllFields(ByVal sql ...
unicursal7's user avatar
1 vote
2 answers
845 views

I've had some problems following migration of a software project to a new machine. I'm trying to get VS2017, MySql.data and my MySQL database working together. I get a long error message (below) ...
stigzler's user avatar
  • 1,035
1 vote
1 answer
4k views

I'm trying to use Hangfire with MysqlStorage in Asp.Net core project. With Hangfire.MysqlStorage 2.0 package, MysqlConnector is installed. I'm facing lot of problems with MysqlConnector and it is not ...
vishgarg's user avatar
  • 463
2 votes
0 answers
126 views

I have an API (ASPNET Core) which calls a Database (MySQL). I use NHibernate and the MySqlData connector. When a lot of requests are sent to my API, I come accross some CPU problem (near to 100%) ...
Sébastien Ollivier's user avatar
0 votes
0 answers
60 views

Ok, so i want to make a loader, that injects a dll into a process based on hwid checked from a MySQL database, by modifing a sourcecode on the internet, however even though i type correct login ...
Music Addicted's user avatar
-1 votes
1 answer
722 views

I can't figure out what's wrong with the connection string. I tried all possible variations of the string. It's done in a WPF framework in vs 2015. I just installed SQL server 2016 newly. The code is: ...
Alif Noushad's user avatar
-1 votes
1 answer
43 views

When I use this code, I get null returned. But when I am trying to use the query by sql I get normal result. Here is my code: public byte[] GetInfo(UnturnedPlayer player , string vehiclename) ...
Roy's user avatar
  • 33
0 votes
0 answers
296 views

Source: MySql.Data.Entity.EF6 stored procedure generate error Index was outside the bounds of the array. List<PayRollAllocationList> payroll = db.SP_EmployeePayRoll(orgCode, Medicalallowcode, ...
Parth Savadiya's user avatar
0 votes
1 answer
878 views

UWP App not being able to work with MySql I have made an app in UWP and instead of using SQLLite which seems to be the norm for Visual Studio 2015 I want to use MySql. I have already connected my ...
wishfulcoder's user avatar
1 vote
1 answer
3k views

I have a .NET application that crashes if I have the MySql.Data.dll assembly in the same folder as the executable but works fine if I move it. A different executable in the same folder is dependent on ...
Yousif Touma's user avatar