Re: [sqlite] how to localize the errror message?

2005-04-21 Thread bloves mr
You could see document that see C file Cfunction. URL:http://www.sqlite.org/capi3.html under macro define { #define SQLITE_OK 0 /* Successful result */ #define SQLITE_ERROR1 /* SQL error or missing database */ #define SQLITE_INTERNAL 2 /* An internal logic error in

[sqlite] how to localize the errror message?

2005-04-20 Thread liigo
I want to localize the error message of sqlite, such as: errcode=1: "No such table: xx" But where is the message in the source file?