> But it segfaults on me at sqlite3_open() and I can't figure out why...there's 
>no stack info.

That's because you have it in the same file that sqlite3ext.h is included in, 
and the call to sqlite3_open() is really to sqlite3_api->open(), but since you 
haven't executed SQLITE_EXTENSION_INIT2 at that point, the sqlite3_api variable 
is a NULL pointer.  Thus a SegV without a stack trace.

Best regards,

Peter
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to