[gnome-db] Sqlite database creation
- From: Christophe Bastin <bastin chris gmail com>
- To: gnome-db-list gnome org
- Subject: [gnome-db] Sqlite database creation
- Date: Fri, 24 Oct 2014 16:03:44 +0200
Hi everyone,
I'm having some trouble using Vala and libda 5.0 for SQLite.
In Python I have succesfully created a SQLite database with
conn = Gda.Connection(provider = Gda.Config.get_provider("SQLite"),
cnc_string = "DB_DIR=.;DB_NAME=test")
conn.open()
conn.close()
In Vala I tried different solutions:
conn = new Gda.Connection (); // fails with undefined reference to `gda_connection_new'
or with:
conn = new Gda.Connection.open_from_string ("SQLite",
"DB_DIR=.;DB_NAME=test", null,
Gda.ConnectionOptions.NONE);
// fails because the database file doesn't exist.
So how can I create the SQLite file at connection startup ?
Chris
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]