Gidday,

>Building sqliteFirst.obj.
>Building SQLiteFirst.exe.
>POLINK: error: Unresolved external symbol '_sqlite3_open'.
>POLINK: error: Unresolved external symbol '_sqlite3_errmsg'.
>POLINK: error: Unresolved external symbol '_sqlite3_close'.
>POLINK: error: Unresolved external symbol '_sqlite3_exec'.
>POLINK: error: Unresolved external symbol '_sqlite3_free'.
>POLINK: fatal error: 5 unresolved external(s).

You must link your code against the SQLite core.  You can either:
   -) build another object target (e.g. sqlite3.obj) and link this with 
your main
   -) build a library (e.g. sqlite3.lib) and tell you linker to use it
   -) tell your linker you're going to use a shared library (e.g. 
sqlite3.dll) which you can download as a precompiled Windows file or 
build yourself from the amalgamation.

I don't know Pelles C so I can't give you more precise instructions on 
how to do that, so you need to search in your compiler help.



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

Reply via email to