~ubuntu-branches/ubuntu/maverick/vala/maverick

« back to all changes in this revision

Viewing changes to vapi/mysql.vapi

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-02-13 17:59:22 UTC
  • mfrom: (7.3.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100213175922-n8bq2xv2q1hihhqb
Tags: 0.7.10-1ubuntu1
* Sync with Debian unstable.
* Remaining changes :
 - debian/rules: Don't make unit test failures fatal to fix FTBFS. It was
   needed if vala need to enter main but it's not the case for now. 
   (See #374151)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
        [Compact]
27
27
        [CCode (free_function = "mysql_close", cname = "MYSQL", cprefix = "mysql_")]
28
28
        public class Database {
29
 
                [CCode (argument0 = "NULL", cname = "mysql_init")]
30
 
                public void init ();
 
29
                [CCode (cname = "mysql_init")]
 
30
                public Database (Database? mysql = null);
31
31
 
32
32
                public ulong affected_rows ();
33
33
                public bool autocommit (bool mode);