Re: [Gambas-user] MySQL connection gone away, how to re-establish?

2013-09-06 Thread Benoît Minisini
Le 06/09/2013 16:01, Alexie a écrit : > Version 3.4.2 is used, and after reconnecting, the request will be retried > too? Currently i see an error thrown. > This is a mysql client option. When connecting to a mysql database, the Gambas mysql driver define the MYSQL_OPT_RECONNECT option, that tel

Re: [Gambas-user] Fedora 17 - Gambas3-Gb-Gui Won't Install

2013-09-06 Thread Pryor, Mike
Thank you. I hate unsolved mysteries. From: Benoît Minisini [gam...@users.sourceforge.net] Sent: Friday, September 06, 2013 12:10 PM To: mailing list for gambas users Subject: Re: [Gambas-user] Fedora 17 - Gambas3-Gb-Gui Won't Install Le 06/09/2013 17:01,

Re: [Gambas-user] Fedora 17 - Gambas3-Gb-Gui Won't Install

2013-09-06 Thread Benoît Minisini
Le 06/09/2013 17:01, Pryor, Mike a écrit : > I found out that gb.gui was not installed when I tried to run 'rpm ql > gambas3-gb.gui'. > However, there appears to be a gb.gui component in the component tab. > Interesting > mystery here. The tab does not indicate the version of the component. I

Re: [Gambas-user] Fedora 17 - Gambas3-Gb-Gui Won't Install

2013-09-06 Thread Pryor, Mike
I found out that gb.gui was not installed when I tried to run 'rpm ql gambas3-gb.gui'. However, there appears to be a gb.gui component in the component tab. Interesting mystery here. The tab does not indicate the version of the component. I wonder whether the Fedora package manager, 'spot', inc

Re: [Gambas-user] Fedora 17 - Gambas3-Gb-Gui Won't Install

2013-09-06 Thread Pryor, Mike
I just discovered that my PC at home has a functioning Gambas3 installed, but the package, 'gambas3-gb-gui', is not installed. I upgraded to FC17 instead of doing a fresh install, so I'm wondering whether the upgrade took care the problem with the 'gui' package. And if this package is not instal

Re: [Gambas-user] MySQL connection gone away, how to re-establish?

2013-09-06 Thread Willy Raets
On Fri, 2013-09-06 at 16:11 +0200, Benoît Minisini wrote: > Le 06/09/2013 16:01, Alexie a écrit : > > Version 3.4.2 is used, and after reconnecting, the request will be retried > > too? Currently i see an error thrown. > > > > This is a mysql client option. > > When connecting to a mysql database

Re: [Gambas-user] MySQL connection gone away, how to re-establish?

2013-09-06 Thread Alexie
Version 3.4.2 is used, and after reconnecting, the request will be retried too? Currently i see an error thrown. 2013/9/6 Benoît Minisini > Le 06/09/2013 08:12, Alexie a écrit : > > Hi, > > > > We are connection to a MySQL database (on the local machine) and the > > application sometimes runs f

Re: [Gambas-user] MySQL connection gone away, how to re-establish?

2013-09-06 Thread Benoît Minisini
Le 06/09/2013 08:12, Alexie a écrit : > Hi, > > We are connection to a MySQL database (on the local machine) and the > application sometimes runs for days/weeks and numerous select, update, > delete, etc are going over the connection every hour (so it isn't lack of > traffic). > > We do things like

Re: [Gambas-user] run as root ?

2013-09-06 Thread Jussi Lahtinen
AFAIK there is no such feature in Gambas IDE. Why you need to run it as root? Can you make your app ask for password when it needs to do something which requires root privileges? That way you could declare string variable and put the password in that. And when your app is ready just remove it. An