Re: [Vala] Using databases with Vala

2018-05-07 Thread Jens Georg
On Thu, 2018-03-08 at 21:03 -0500, Steven Oliver wrote: > I want to begin working an application that would have a database, > specifically SQLite, as a back-end. I know that at some point > sqlheavy > (https://github.com/nemequ/sqlheavy) was an option for using > databases > wit

Re: [Vala] Using databases with Vala

2018-03-12 Thread Reid Thompson
nt.com/v2/url?u=https-3A__github.com_nemequ_sqlheavy=DwICAg=w8fEmIi-B5lsC0MnOiGTloUx5YmN70-3jVCmqqbXNxM=4r1gVE34nFB7YgioINuzq1cdGrlIBszDh26sKYP7ux8=zMWzrpNSCMQRWW > c-_XOF1iaNA8RNp2kZ5oa-DgItU_0=9ok3pBNjbgCml6TcOolEQq_lPpo-FIffvuUQ4kUJbFk=) > was an option for using databases > with Vala. It doesn't appear t

Re: [Vala] Using databases with Vala

2018-03-12 Thread Reid Thompson
nt.com/v2/url?u=https-3A__github.com_nemequ_sqlheavy=DwICAg=w8fEmIi-B5lsC0MnOiGTloUx5YmN70-3jVCmqqbXNxM=4r1gVE34nFB7YgioINuzq1cdGrlIBszDh26sKYP7ux8=zMWzrpNSCMQRWW > c-_XOF1iaNA8RNp2kZ5oa-DgItU_0=9ok3pBNjbgCml6TcOolEQq_lPpo-FIffvuUQ4kUJbFk=) > was an option for using databases > with Vala. It doesn't appear t

Re: [Vala] Using databases with Vala

2018-03-11 Thread Michael Gratton
On Fri, Mar 9, 2018 at 1:03 PM, Steven Oliver <"oliver.steven"@gmail.com> wrote: The only one I'm aware of is Geary, but ripping the database layer out of Geary would be quite the task and probably more than I would need. Geary's low-level DB layer isn't too tightly coupled to the app. You

Re: [Vala] Using databases with Vala

2018-03-09 Thread Link Dupont
On Thu, 2018-03-08 at 21:03 -0500, Steven Oliver wrote: > I want to begin working an application that would have a database, > specifically SQLite, as a back-end. I know that at some point sqlheavy > (https://github.com/nemequ/sqlheavy) was an option for using databases > with Vala

Re: [Vala] Using databases with Vala

2018-03-09 Thread Ben
thub.com/nemequ/sqlheavy) was an option for using databases >with Vala. It doesn't appear to be maintained anymore though. Are >there other options out there? What do most people use? Are there any >good open source vala projects using SQLite I could look to as an >example? The onl

Re: [Vala] Using databases with Vala

2018-03-09 Thread Ulink
Hi Oliver, I'm using a VERY thin (2-3 pages of code) self-written vala wrapper which hides open/close and query (returning a 2 dimensional string array as the result) using the Mysql and Sqlite Namespaces. Then, I only send SQL queries and process the result. Of course I only use basic SQL

Re: [Vala] Using databases with Vala

2018-03-09 Thread Miguel Miranda
n working an application that would have a database, > specifically SQLite, as a back-end. I know that at some point sqlheavy > (https://github.com/nemequ/sqlheavy) was an option for using databases > with Vala. It doesn't appear to be maintained anymore though. Are > there other optio

[Vala] Using databases with Vala

2018-03-08 Thread Steven Oliver
I want to begin working an application that would have a database, specifically SQLite, as a back-end. I know that at some point sqlheavy (https://github.com/nemequ/sqlheavy) was an option for using databases with Vala. It doesn't appear to be maintained anymore though. Are there other options out