Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-04-06 Thread gambas
Updates: Status: WontFix Comment #5 on issue 612 by benoit.m...@gmail.com: BUG Cannot browse more of 128 records on tables "No current connection" https://code.google.com/p/gambas/issues/detail?id=612 (No comment was entered for this change.) -- You received this message because this

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-29 Thread Benoît Minisini
Le 30/03/2015 00:34, marco bra a écrit : > There must something i cannot understand with this > > I try on the same sqlite3 database > - creating a different new test project > - defining new datasource > - defining a databrowser that use that datasource tables, the tables do not > have any primary

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-29 Thread marco bra
There must something i cannot understand with this I try on the same sqlite3 database - creating a different new test project - defining new datasource - defining a databrowser that use that datasource tables, the tables do not have any primary key defined i can browse the entire tables conten

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Lewis Balentine
I over reacted to begin with. Thus I will not continue to further beat this dead horse. :-) Lewis On 03/28/2015 02:27 PM, Benoît Minisini wrote: > Le 28/03/2015 20:22, Lewis Balentine a écrit : >> It is just I have heard too many times that SQL tables must have primary >> keys ... and it just is

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Benoît Minisini
Le 28/03/2015 20:22, Lewis Balentine a écrit : > It is just I have heard too many times that SQL tables must have primary > keys ... and it just is not true. > It depends on what you mean by "must". It is not technically mandatory, but if you create a table without a primary key, you will have pr

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Lewis Balentine
My real point was (and I probably stated it very badly) is there is nothing in SQL that requires a table to have a primary key defined. Thus one should not assume such key exist unless it is a known DB structure. For a known structure there is probably an alternative aproach (orber by something

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Lewis Balentine
SQLite (at least the current versions) will always have a row number: "/SELECT/rowid FROM ..." If the system does not have a unique row number built it (the only thing that I use these days is SQLite) then it should be able to be generated "on the fly" using a calculated field along with the q

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Benoît Minisini
Le 28/03/2015 19:09, Benoît Minisini a écrit : > Le 28/03/2015 18:58, Lewis Balentine a écrit : >> I have over three decades of dealing with SQL and I can still not >> understand how this myth got propagated. >> >> There is NO valid SQL reason why a table should be required to have a >> unique prim

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Benoît Minisini
Le 28/03/2015 18:58, Lewis Balentine a écrit : > I have over three decades of dealing with SQL and I can still not > understand how this myth got propagated. > > There is NO valid SQL reason why a table should be required to have a > unique primary key or any predefined key for that matter. One can

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread Lewis Balentine
I have over three decades of dealing with SQL and I can still not understand how this myth got propagated. There is NO valid SQL reason why a table should be required to have a unique primary key or any predefined key for that matter. One can always use the row number (record number) if such a

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-28 Thread gambas
Updates: Status: Accepted Comment #4 on issue 612 by benoit.m...@gmail.com: BUG Cannot browse more of 128 records on tables "No current connection" https://code.google.com/p/gambas/issues/detail?id=612 The reason why DataBrowser or DataView fails is because your table does not have a

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-26 Thread gambas
Comment #3 on issue 612 by marcobra...@gmail.com: BUG Cannot browse more of 128 records on tables "No current connection" https://code.google.com/p/gambas/issues/detail?id=612 FYI creating a new project with a new sqlite subset of data i don't have no more 128 recs limit in browsing. There m

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-25 Thread gambas
Comment #2 on issue 612 by benoit.m...@gmail.com: BUG Cannot browse more of 128 records on tables "No current connection" https://code.google.com/p/gambas/issues/detail?id=612 This is not a good fix. Please provide a project that reproduces the bug. -- You received this message because this p

Re: [Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-23 Thread gambas
Comment #1 on issue 612 by marcobra...@gmail.com: BUG Cannot browse more of 128 records on tables "No current connection" https://code.google.com/p/gambas/issues/detail?id=612 A dirty custom temporary solution: raising query limit into gambas code in ~/src/gambas/trunk/comp/src/gb.db.form/.src/

[Gambas-user] Issue 612 in gambas: BUG Cannot browse more of 128 records on tables "No current connection"

2015-03-19 Thread gambas
Status: New Owner: Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 612 by marcobra...@gmail.com: BUG Cannot browse more of 128 records on tables "No current connection" https://code.google.com/p/gambas/issues/detail?id=612 __