set the logging level in the configuration file higher than zero
-- Original Message ---
From: fvegaf
To: gambas-user@lists.sourceforge.net
Sent: Tue, 30 Aug 2011 11:12:18 -0700 (PDT)
Subject: [Gambas-user] Gambas 2 and mysql bin-log
> I turned on the mysql binary log, but my
What type of connection are you using ?
-- Original Message ---
From: Kevin Fishburne
To: gambas-user@lists.sourceforge.net
Sent: Tue, 30 Aug 2011 05:31:52 -0400
Subject: Re: [Gambas-user] gb3: using string as stream for sequential write
operations of
arbitrary datatypes
> On 0
On Wed, 2011-08-31 at 03:13 +0200, Benoît Minisini wrote:
> >
> > Sorry, I'm really panicky, I meant method overriding not polymorphism.
> > Bruce
>
> This change only makes the interpreter raise an error instead of eventually
> segfaulting, by preventing something that is forbidden : changing
Updates:
Status: Fixed
Comment #2 on issue 93 by benoit.m...@gmail.com: Error backtrace not always
correct
http://code.google.com/p/gambas/issues/detail?id=93
It seems that I have succeeded. :-)
Error.Backtrace has been fixed in revision #4066, without too much penalty
on interpreter
> Please forgive my rambling here... but if anyone can explain these
> results I'd really like to hear from them.
>
> Consistently getting Inconsistent results... which is consistency..
> ARRR!
>
> Send command strings to the stream that is a virtual console and maybe
> they will work, ma
Please forgive my rambling here... but if anyone can explain these
results I'd really like to hear from them.
Consistently getting Inconsistent results... which is consistency..
ARRR!
Send command strings to the stream that is a virtual console and maybe
they will work, maybe they won'
Updates:
Status: Accepted
Labels: -Version Version-TRUNK
Comment #1 on issue 93 by benoit.m...@gmail.com: Error backtrace not always
correct
http://code.google.com/p/gambas/issues/detail?id=93
The Error.Backtrace cannot be actually be implemented reliably *and*
efficiently. I
>
> Sorry, I'm really panicky, I meant method overriding not polymorphism.
> Bruce
This change only makes the interpreter raise an error instead of eventually
segfaulting, by preventing something that is forbidden : changing the
signature of a method through inheritance.
That has nothing to do
On Wed, 2011-08-31 at 10:29 +0930, Bruce Bruen wrote:
> On Wed, 2011-08-31 at 01:56 +0200, Benoît Minisini wrote:
>
> > Hi,
> >
> > To finish fixing issue #78, in revision #4064, I have added a new check in
> > the
> > Gambas inheritance mechanism.
> >
> > Now, a class method can override a m
> On Wed, 2011-08-31 at 01:56 +0200, Benoît Minisini wrote:
> > Hi,
> >
> > To finish fixing issue #78, in revision #4064, I have added a new check
> > in the Gambas inheritance mechanism.
> >
> > Now, a class method can override a method of a parent class only if they
> > have the same signature
On Wed, 2011-08-31 at 01:56 +0200, Benoît Minisini wrote:
> Hi,
>
> To finish fixing issue #78, in revision #4064, I have added a new check in
> the
> Gambas inheritance mechanism.
>
> Now, a class method can override a method of a parent class only if they have
> the same signature.
>
> The
Updates:
Status: Fixed
Comment #5 on issue 78 by benoit.m...@gmail.com: Illegal optimization / May
a method's return value type in a derived class be different from the base
class?
http://code.google.com/p/gambas/issues/detail?id=78
Fixed in revision #4064.
Now, a class method can ov
Hi,
To finish fixing issue #78, in revision #4064, I have added a new check in the
Gambas inheritance mechanism.
Now, a class method can override a method of a parent class only if they have
the same signature.
The check is not done for the "_new" special method, as the inheritance of
_new is
On Tue, 2011-08-30 at 15:37 +0200, Benoît Minisini wrote:
> > > Can you be more precise? Which dialog box or window you are talking about
> > > for example...
> >
> > Preferences in particular, but the Project Properties tabs sometimes
> > confuse me, especially the Environment page. If you flic
Thanks for your help, Setting the DB.Debug=True help me to figure it out.
Turns that
cQuery = " Insert into test.StatusCodes() values (19, '19')"
does not save in the sentence in the bin-log
and
db2.name="test"
cQuery = " Insert into StatusCodes() values (19, '19')"
saves in the sentence in
Status: New
Owner:
Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any
Desktop-Any GUI-Any
New issue 93 by emil.len...@gmail.com: Error backtrace not always correct
http://code.google.com/p/gambas/issues/detail?id=93
1) Describe the problem.
The backtrace that can be obtai
> MyWebCam example says (and works); "Device is V4L2!" and WebCam example
> doesn't find it at all..?
> Still something wrong...
>
> Jussi
>
Look in the code: apparently WebCam scans for /dev/videoX with X between 0 and
20. Maybe your device name does not look like that...
--
Benoît Minisini
MyWebCam example says (and works); "Device is V4L2!" and WebCam example
doesn't find it at all..?
Still something wrong...
Jussi
2011/8/30 Benoît Minisini
> > 'Form.Close' is incorrectly overridden in class 'FDevice'
> >
> > Gambas 3 rev 4052 @ Ubuntu 11.04 64bit
> >
> >
> > Jussi
>
> Fixed i
> I need that the "insert" statement to be logged in the binary log.
>
I have no idea why it is not logged. I didn't know there was a "mysql binary
log", and I don't know how it works.
Try to set 'DB.Debug = True' to see what SQL queries are sent to the SQL
client library.
Regards,
--
Benoî
I need that the "insert" statement to be logged in the binary log.
fvegaf wrote:
>
> I turned on the mysql binary log, but my gambas inserts, updates and
> deletes are not showing in the binary log (MySQL)
>
> Example:
>
> strQ = "Insert into tabletest(field1) values('test')"
> rs = db.Exec
> I turned on the mysql binary log, but my gambas inserts, updates and
> deletes are not showing in the binary log (MySQL)
>
> Example:
>
> strQ = "Insert into tabletest(field1) values('test')"
> rs = db.Exec(strQ)
>
>
> I tried the following, and works, but it implies that I will need to
> rew
I turned on the mysql binary log, but my gambas inserts, updates and deletes
are not showing in the binary log (MySQL)
Example:
strQ = "Insert into tabletest(field1) values('test')"
rs = db.Exec(strQ)
I tried the following, and works, but it implies that I will need to rewrite
my entire applic
hi,
> On 08/30/2011 04:35 AM, Bruce Bruen wrote:
>> On Tue, 2011-08-30 at 01:52 -0400, Kevin Fishburne wrote:
>>> When a transaction isn't received and I need to resend it, I'd like
>>> to
>>> be able to refer to the transaction history and resend the data
>>> (QueueOut[id].Data) without having to
> > Can you be more precise? Which dialog box or window you are talking about
> > for example...
>
> Preferences in particular, but the Project Properties tabs sometimes
> confuse me, especially the Environment page. If you flick between a few
> of the Project Properties tabs, make a new Argument
On Tue, 2011-08-30 at 14:36 +0200, Benoît Minisini wrote:
> > On Tue, 2011-08-30 at 20:53 +0930, Bruce Bruen wrote:
> > > stuff about space bars
> >
> > But I want to ask a question. There appears to me these days that I'm
> > getting a psychological dislike of buttonless pop-ups. In many
> > a
> Wow, you're really fast :-)
>
> Yes, You're right. With oxygen it works fine. That's very strange. All
> Qt4 programs I use work fine with bespin.
>
When I use bespin, gambas3 does not crash. Can you export your configuration
of bespin and send it to me?
--
Benoît Minisini
> On Tue, 2011-08-30 at 20:53 +0930, Bruce Bruen wrote:
> > stuff about space bars
>
> But I want to ask a question. There appears to me these days that I'm
> getting a psychological dislike of buttonless pop-ups. In many
> application these days you are presented with a pop-up that asks a
> rea
On Tue, 2011-08-30 at 20:53 +0930, Bruce Bruen wrote:
> stuff about space bars
But I want to ask a question. There appears to me these days that I'm getting
a psychological dislike
of buttonless pop-ups. In many application these days you are presented with a
pop-up that asks a
reasonable que
On Tue, 2011-08-30 at 20:52 +1000, richard terry wrote:
> Hi list,
>
> Question:
>
> Ages ago when a combobox had focus, hitting the space bar would cause the
> combo contents to drop down as if one had clicked on the combo down arrow.
>
> This hasn't seemed to worked for a long time -is ther
Hi list,
Question:
Ages ago when a combobox had focus, hitting the space bar would cause the
combo contents to drop down as if one had clicked on the combo down arrow.
This hasn't seemed to worked for a long time -is there another key
combination?
Regards
richard
--
Comment #5 on issue 88 by benoit.m...@gmail.com: G3 Help Browser - General
Navigation 1 : External links
http://code.google.com/p/gambas/issues/detail?id=88
OK, I see. I have clicked on the button on the left, not on the link on the
right!
---
Comment #6 on issue 88 by benoit.m...@gmail.com: G3 Help Browser - General
Navigation 1 : External links
http://code.google.com/p/gambas/issues/detail?id=88
Fixed!
--
Special Offer -- Download ArcSight Logger for FREE
> 'Form.Close' is incorrectly overridden in class 'FDevice'
>
> Gambas 3 rev 4052 @ Ubuntu 11.04 64bit
>
>
> Jussi
Fixed in revision #4057.
Regards,
--
Benoît Minisini
--
Special Offer -- Download ArcSight Logger fo
On 08/30/2011 04:35 AM, Bruce Bruen wrote:
> On Tue, 2011-08-30 at 01:52 -0400, Kevin Fishburne wrote:
>> When a transaction isn't received and I need to resend it, I'd like
>> to
>> be able to refer to the transaction history and resend the data
>> (QueueOut[id].Data) without having to recalculate
Comment #4 on issue 88 by benoit.m...@gmail.com: G3 Help Browser - General
Navigation 1 : External links
http://code.google.com/p/gambas/issues/detail?id=88
Strange: the paypal link sends me to a paypal payment page in english.
-
Comment #3 on issue 88 by adamn...@gmail.com: G3 Help Browser - General
Navigation 1 : External links
http://code.google.com/p/gambas/issues/detail?id=88
Tested. But the paypal link takes me to the French paypal site???
On Tue, 2011-08-30 at 01:52 -0400, Kevin Fishburne wrote:
> When a transaction isn't received and I need to resend it, I'd like
> to
> be able to refer to the transaction history and resend the data
> (QueueOut[id].Data) without having to recalculate it, especially
> since
> the data may have
37 matches
Mail list logo