Re: [Vala] query

2016-09-09 Thread Adam Tauno Williams
rsal > Ctags has > modified the tags format slightly: > https://git.gnome.org/browse/anjuta/tree/plugins/symbol-db/anjuta-tag > s -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 Systems Administrator, Python Developer, LPI / NCLA __

Re: [Vala] The future of Vala

2016-09-09 Thread Adam Tauno Williams
what Al is doing other than > > replying to bugzilla issues that won't be fixed unless it's a > > binding issue). -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 OpenGroupware Developer <http://www.opengroupware.us/> _

Re: [Vala] Just a news I've read about popularity langage

2016-07-22 Thread Adam Tauno Williams
On Fri, 2016-07-22 at 09:58 +0200, Ulink wrote: > Am 2016-07-21 um 23:56 schrieb Dev_NIX: > One question: is there a "standard" Vala library/classes? > Of course: GLib (and others), simply look at Agree. This is one of the appealing aspects. GNOME already provides a rich set of proven libraries.

Re: [Vala] ORM For Vala?

2016-07-22 Thread Adam Tauno Williams
On Thu, 2016-07-21 at 16:50 +0200, Gergely Polonkai wrote: > You may want to check GOM, too: https://github.com/GNOME/gom Do you know of a Vala application using GOM? I've search around and haven't been able to find anything. -- Adam Tauno Williams <mailto:awill...@wh

Re: [Vala] Just a news I've read about popularity langage

2016-07-21 Thread Adam Tauno Williams
onaries; the grass-is-always-greener But what I want is great applications and a stable platform. I do have reservations about the future. -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 Systems Administrator, Python Developer, LPI / NCLA ___

[Vala] ORM For Vala?

2016-07-21 Thread Adam Tauno Williams
I generally develop in Python using the SQLalchemy ORM. Is there a working ORM, or some equivalent, for Vala. Using SQLite as the backend in this case. Or is it 'just compose SQL statements'? -- Meetings Coordinator, Michigan Association of Railroad Passengers 537 Shirley St NE Grand Rapids,

[Vala] Throughts/Reviews of "GNOME 3 Application Development Beginner's Guide"

2016-07-21 Thread Adam Tauno Williams
development of a [fat] application in GNOME using Vala, and getting up the bottom of the learning curve. There seems to be a rather thin selection of material. -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 openSUSE, a LINUX desktop for human

Re: [Vala] Just a news I've read about popularity langage

2016-07-21 Thread Adam Tauno Williams
ce, in a chart and > finally in a good position... ^__^ It compiles! That is enough for me. I do a lot of coding in Python - but the complexity of getting the runtime available is a major drag. -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 OpenGroup

Re: [Vala] Equivalent for sqlitebck (sqlite backup) [SOLVED]

2016-07-20 Thread Adam Tauno Williams
The following example works. public int main (string[] args) { Sqlite.Database file_db; Sqlite.Database live_db; Sqlite.Backup backup; int rc; rc = Sqlite.Database.open ("database_in.db", out file_db); if (rc != Sqlite.OK) { stderr.printf ("Can't open database:

Re: [Vala] Equivalent for sqlitebck (sqlite backup)

2016-07-20 Thread Adam Tauno Williams
sk database [or, at least, it used to]. -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 Systems Administrator, Python Developer, LPI / NCLA ___ vala-list mailing list vala-list@gnome.org https://mail.gnome.org/mailman/listinfo/vala-list

[Vala] Equivalent for sqlitebck (sqlite backup)

2016-07-19 Thread Adam Tauno Williams
it to a memory:// database - and 'saves' that in memory database back to an SQLite on-disk database using sqlitebck.copy(source, target). How would one do an equivalent thing in Vala? -- Adam Tauno Williams <mailto:awill...@whitemice.org> GPG D95ED383 OpenGroupware Develop