vote up 3 vote down star

Below is the link

http://stackoverflow.com/questions/1518946/how-to-insert-delete-select-update-values-in-datagridview-in-c-using-mysql

which has the code to connect to a MySQL datbase from a Windows application. It works fine in Windows XP. So I have created a setup file and installed in Ubuntu using Wine.

The issue is with the data not getting popped up in the datagridview of the application.

Extra information:

Wine is working fine by which i have installed small desktop application MySql with connector,Mono IDE are already installed.

It is even possible for me to create small applications using mono>(excluding database)

Screenshot 1: In Windows it looks like this:

alt text

But in Ubuntu Linux(8.04) it doesn't show up and looks like below.

alt text

flag

44% accept rate
2  
Sorry I don't have full answer for you, but from the error it looks like something to do with character encoding of the data maybe. – HollyStyles Nov 6 at 10:59
sudo apt-get install libmono-i18n2.0-cil I used the above command. Because of which the error got segregated. But Still the error pops up – Srikanth Mattihalli Nov 6 at 11:07

2 Answers

vote up 0 vote down

Wait, why are you using Wine and Mono at the same time? That probably won't work. Why don't you run the application natively, using only Mono?

link|flag
I have used many other technologies like crystal reports, access. I think mono isn't capable of supporting such applications – Srikanth Mattihalli Nov 7 at 16:55
Do not run Mono on Wine, this is pointless! And what version of Mono are you using? The bug mentioned by @unwind is in version that is two years old at least. – skolima Nov 8 at 17:22
I'm not running Mono on Wine but creating a .exe file from windows(visual studio.net) and then deploying in linux ubuntu using wine. This is working fine for small applications, but for database applications errors are popping up – Srikanth Mattihalli Nov 10 at 19:03
vote up 3 vote down

This sounds like bug 33938, the Mono environment in Linux doesn't seem to support Windows' native codepage (1252).

link|flag
This is a problem with the way debian and ubuntu package Mono, not with the framework itself. – skolima Nov 8 at 17:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.