Marcelo Zamateo said: > Hi everybody! > > I need a tip about how sqlite3_column_double works. I hoped it returns a > pointer to a 8-byte-real, but it don't.
double sqlite3_column_double(sqlite3_stmt*, int iCol); returns a double, not a pointer to a double. That seems pretty straight forward to me, but I suspect that you misread the documentation your first time through. It's happened before in this very office. Clay Dowling -- Lazarus Notes from Lazarus Internet Development http://www.lazarusid.com/notes/ Articles, Reviews and Commentary on web development

