Re: [sqlite] My HPUX Notes

2007-05-08 Thread Essien Essien
that was really funny you know :) On POSIX systems you're supposed to do three things to get your software installed (usually a standard set of three commands). 1. ./configure (some packages leave this out, since they don't use GNU autotools) 2. make (there's almost always this, or an

Re: [sqlite] My HPUX Notes

2007-05-10 Thread Essien Essien
guess you missed all the smileys and innuendo in that reply then. On 5/8/07, Glenn <[EMAIL PROTECTED]> wrote: Essien Essien wrote: > that was really funny you know :) And your response was really obnoxious. You could have simply said that the common way to do things on POSIX is &qu

[sqlite] sqlite3 dll symbols

2006-03-31 Thread Essien Essien
hiya, I have a code snippet that looks like: typedef int (*SQLITE3_CLOSE)(sqlite3*); typedef const char* (*SQLITE3_ERRMSG)(sqlite3*); typedef int (*SQLITE3_OPEN)(const char*, sqlite3**); typedef int (*SQLITE3_EXEC) (sqlite3*, const char*, sqlite3_callback, void*, char**); HINSTANCE sqlite3_dll;

Re: [sqlite] Re: sqlite3 dll symbols

2006-03-31 Thread Essien Essien
On 3/31/06, Igor Tandetnik <[EMAIL PROTECTED]> wrote: > > Essien Essien <[EMAIL PROTECTED]> wrote: > > _sqlite3_open = (SQLITE3_OPEN)GetProcAddress(sqlite3_dll, > > "sqlite3_open"); > > if (_sqlite3_open == NULL) { > > printf(&quo

Re: [sqlite] sqlite3 dll symbols

2006-04-04 Thread Essien Essien
AIL PROTECTED]> wrote: > > Dennis Jenkins wrote: > > Essien Essien wrote: > > > >>hiya, > >> > >>I have a code snippet that looks like: > >> > >>typedef int (*SQLITE3_CLOSE)(sqlite3*); > >>typedef const char* (*SQLITE3_ERRMSG)(s