I have a VB.NET application that has been accessing MySQL stored procedures using .NET Connector 5.0.7. We recently upgraded to .NET Connector 5.2.6 and I now receive the following error:
"Procedure or function 'proc_scheduleProcess' cannot be found in database 'ProjectMgr'."
The following code has been running without issue until the upgrade, and I've verified that the connection string is pointing to the correct database:
Dim conn As New MySql.Data.MySqlClient.MySqlConnection
conn.ConnectionString =
ConnectionStrings.Item("MYSQL_DIRECT").ConnectionString.ToString()
conn.Open()
Dim cmd As New MySql.Data.MySqlClient.MySqlCommand
cmd.CommandType = CommandType.StoredProcedure
cmd.CommandText = "proc_scheduleProcess"
cmd.Connection = conn
cmd.ExecuteNonQuery()
conn.Close()
Has anyone else seen this issue? Any suggestions???