Re: [fpc-pascal] Virtual object methods

2019-07-02 Thread Sven Barth via fpc-pascal
Am 02.07.2019 um 19:43 schrieb Michael Van Canneyt: On Tue, 2 Jul 2019, Ryan Joseph wrote: On Jul 2, 2019, at 10:32 AM, Michael Van Canneyt wrote: It overwrites the first. There is no such thing as '2 VMT tables'. That’s what I thought. How costly is this? Not sure what it’s doing

Re: [fpc-pascal] Virtual object methods

2019-07-02 Thread Marco van de Voort
Op 2019-07-02 om 19:41 schreef Ryan Joseph: On Jul 2, 2019, at 10:32 AM, Michael Van Canneyt wrote: It overwrites the first. There is no such thing as '2 VMT tables'. That’s what I thought. How costly is this? Not sure what it’s doing under the hood but I’d like to know more. You'd expect

Re: [fpc-pascal] Virtual object methods

2019-07-02 Thread Michael Van Canneyt
On Tue, 2 Jul 2019, Ryan Joseph wrote: On Jul 2, 2019, at 10:32 AM, Michael Van Canneyt wrote: It overwrites the first. There is no such thing as '2 VMT tables'. That’s what I thought. How costly is this? Not sure what it’s doing under the hood but I’d like to know more. As far as I

Re: [fpc-pascal] Virtual object methods

2019-07-02 Thread Ryan Joseph
> On Jul 2, 2019, at 10:32 AM, Michael Van Canneyt > wrote: > > It overwrites the first. There is no such thing as '2 VMT tables'. That’s what I thought. How costly is this? Not sure what it’s doing under the hood but I’d like to know more. Regards, Ryan Joseph

Re: [fpc-pascal] Virtual object methods

2019-07-02 Thread Michael Van Canneyt
On Tue, 2 Jul 2019, Ryan Joseph wrote: Another question: what happens if you call the constructor twice? Does this create 2 VMT tables or overwrites the first? It overwrites the first. There is no such thing as '2 VMT tables'. Michael. ___

Re: [fpc-pascal] Virtual object methods

2019-07-02 Thread Ryan Joseph
Another question: what happens if you call the constructor twice? Does this create 2 VMT tables or overwrites the first? type TA = object constructor Create; procedure DoThis; virtual; end; procedure TA.DoThis; begin

Re: [fpc-pascal] Troubles with SQLDBRESTBridge

2019-07-02 Thread Michael Van Canneyt
On Tue, 2 Jul 2019, Sven Barth via fpc-pascal wrote: Michael Van Canneyt schrieb am Di., 2. Juli 2019, 08:20: On Mon, 1 Jul 2019, Sven Barth via fpc-pascal wrote: Am 01.07.2019 um 23:18 schrieb Michael Van Canneyt: By the way: is it correct that the sqldbrestdataset currently does

Re: [fpc-pascal] Troubles with SQLDBRESTBridge

2019-07-02 Thread Sven Barth via fpc-pascal
Michael Van Canneyt schrieb am Di., 2. Juli 2019, 08:20: > > > On Mon, 1 Jul 2019, Sven Barth via fpc-pascal wrote: > > > Am 01.07.2019 um 23:18 schrieb Michael Van Canneyt: > >> > >>> > >>> By the way: is it correct that the sqldbrestdataset currently does > >>> not support

Re: [fpc-pascal] Troubles with SQLDBRESTBridge

2019-07-02 Thread Michael Van Canneyt
On Mon, 1 Jul 2019, Sven Barth via fpc-pascal wrote: Am 01.07.2019 um 23:18 schrieb Michael Van Canneyt: By the way: is it correct that the sqldbrestdataset currently does not support editing/inserting/deleting entries? Do you plan to change this? Ehm, no, of course it is supposed to