I'm getting the following warning message...
Return type of function 'ConnectionNew' is not CLS-compliant.
...for this function:
Public Function ConnectionNew(ByVal DataBaseName As String) As MySqlConnection
Dim connection As MySqlConnection = Nothing
connection = getConnection(DataBaseName())
Return connection
End Function
What does this message mean, and how can I fix it?
MySqlConnection
? Where is it defined? The error indicates that is the problem. – BillingsgateMySqlConnection
is a member ofMySql.Data.MySqlClient
. Am I not allowed to use that? – Austin