[Vala] sqlite in 0.1.7



Something is not right - it gets confused with the function names in the
Value class in sqlite.vapi int(), int64() and double.

I replace the class with the following - and made the 'ref' and 'out'
parameters line up properly. But this has to be a kludge....

        /* Dynamically Typed Value Object */
        [CCode (cname = "sqlite3_value")]
        public class Value {
                public pointer blob ();
                public int32 bytes();
                public void double();
                public int32 int();
                public uint64 int64();
                public weak string text();
                public int32 type();
                public int32 numeric_type();

        }

[excuse the noob naivety...]



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]