Re: [Gambas-user] SQLite - in memory DB

2016-06-19 Thread adamn...@gmail.com
On Mon, 20 Jun 2016 02:25:18 +0200 Benoît Minisini wrote: > Le 20/06/2016 01:17, zainudin ahmad a écrit : > > I can't use it too (attach pic), it's bug ? (attach project) > > > > On Sun, Jun 19, 2016 at 5:57 PM, Vinode Singh Ujlain > > wrote: > > > >> Public conH As New Connection > >> conH.Type

Re: [Gambas-user] SQLite - in memory DB

2016-06-19 Thread Benoît Minisini
Le 20/06/2016 01:17, zainudin ahmad a écrit : > I can't use it too (attach pic), it's bug ? (attach project) > > On Sun, Jun 19, 2016 at 5:57 PM, Vinode Singh Ujlain > wrote: > >> Public conH As New Connection >> conH.Type = "sqlite3" >> conH.name = ":memory:" >>Try conH.Open() >> If Error

Re: [Gambas-user] SQLite - in memory DB

2016-06-19 Thread zainudin ahmad
I can't use it too (attach pic), it's bug ? (attach project) On Sun, Jun 19, 2016 at 5:57 PM, Vinode Singh Ujlain wrote: > Public conH As New Connection > conH.Type = "sqlite3" > conH.name = ":memory:" > Try conH.Open() >If Error Then > Print "Unable to open database \n Error :"; Erro

Re: [Gambas-user] Conditional edit of a database table

2016-06-19 Thread zainudin ahmad
It's work as expected with sqlite. attach project - extract into /tmp dir - run On Sun, Jun 19, 2016 at 6:21 PM, wrote: > On 2016-06-18 02:54, Shane wrote: > > Are you looking for something like > > hConn.Find("clients", "firstname LIKE &1 OR lastname LIKE &1 OR phone > > like &1 OR street_name

[Gambas-user] ERROR with rev. 7801

2016-06-19 Thread Ru Vuott
Hello, updating with rev. 7801, I obtain this error: gmenu.cpp: In member function 'void gMenu::update()': gmenu.cpp:290:27: warning: 'GtkWidget* gtk_image_menu_item_new()' is deprecated (declared at /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:72): Use 'gtk_menu_item_new' instead [-

[Gambas-user] [Gambas Bug Tracker] Bug #951: TableView: After some errors "Click" is not accessible anymore

2016-06-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.951&from=L21haW4- Comment #2 by Benoît MINISINI: The bug is in the Control.Hovered property... Benoît MINISINI changed the state of the bug to: Accepted. -- What NetFlo

[Gambas-user] [Gambas Bug Tracker] Bug #948: Checks in menu not appearing.

2016-06-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.948&from=L21haW4- Comment #8 by Benoît MINISINI: Fixed in revision #7801. Benoît MINISINI changed the state of the bug to: Fixed. -- What NetFlow Analyzer can do for yo

Re: [Gambas-user] Conditional edit of a database table

2016-06-19 Thread willy
On 2016-06-18 02:54, Shane wrote: > Are you looking for something like > hConn.Find("clients", "firstname LIKE &1 OR lastname LIKE &1 OR phone > like &1 OR street_name LIKE &1 OR suburb LIKE &1", "%" & s & "%") > except with AND'S No, not looking for like queries just a simple: rResult = hConn.Edi

[Gambas-user] SQLite - in memory DB

2016-06-19 Thread Vinode Singh Ujlain
Public conH As New Connection conH.Type = "sqlite3" conH.name = ":memory:" Try conH.Open() If Error Then Print "Unable to open database \n Error :"; Error.Text Error I am getting is :- /Unable to open database // //Error : Unable to locate database `:memory:` in ``/ conH.name