Hi Guys,
Is there any good nice library to query MySQL DB? I have mysql connector .net installed, and it basically gives me ado.net replaced, like MySQLCommand, MySQLAdapter etc
MySqlCommand command = connection.CreateCommand ();
command.CommandText = "select * from samples";
but you have to write a lot of code anyway, is there any lib, that wraps up this, so I write something like
p = MysqlProvider.Connect();
dataSet = p.Execute(query);
or
array = p.Execute(query);
value = p.ExecuteAsValue(query);
etc?
Any ideas?
Thanks, Dmitry