Mám problém s připojením do MySQL. Api je napsaná v C# a na Win normálně běží, ale jakmile jí zapnu přes mono v ubuntech tak to vyhodí vyjimku.
Zkousel jsem to napsat i v Monu přímo a hází to pořád tu samou chybu.
Unhandled Exception: System.EntryPointNotFoundException: CreateSemaphore
at (wrapper managed-to-native) MySql.Data.Common.Semaphore:CreateSemaphore (MySql.Data.Common.SECURITY_ATTRIBUTES&,int,int,string)
at MySql.Data.Common.Semaphore..ctor (Int32 initialCount, Int32 maximumCount) [0x00000]
at (wrapper remoting-invoke-with-check) MySql.Data.Common.Semaphore:.ctor (int,int)
at MySql.Data.MySqlClient.MySqlPool..ctor (MySql.Data.MySqlClient.MySqlConnectionString settings) [0x00000]
at MySql.Data.MySqlClient.MySqlPoolManager.GetPool (MySql.Data.MySqlClient.MySqlConnectionString settings) [0x00000]
at MySql.Data.MySqlClient.MySqlConnection.Open () [0x00000]
Program vypadá takhle:
using System;
using MySql.Data.MySqlClient;
namespace mysql
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
MySqlConnection connection = new MySqlConnection("server=10.0.0.2;uid=user;database=testdb;port=3306;password=user;");
connection.Open();
MySqlCommand command = new MySqlCommand("SELECT * FROM example",connection);
MySqlDataReader data = command.ExecuteReader();
while(data.Read())
{
Console.WriteLine(data.GetString(1));
}
}
}
}
Příspěvky odeslané z IP adresy 83.208.16.–
Tomáš