Re: [sqlite] International Language Support

2005-08-06 Thread Dan Wellisch
. Dan Wellisch

Re: [sqlite] International Language Support

2005-08-04 Thread Dan Wellisch
or dispute what Austin is saying? I would like some more feedback before I start doing more investigation. Thanks, Dan Austin Ziegler wrote: On 8/4/05, Dan Wellisch <[EMAIL PROTECTED]> wrote: We just put a SQLlite application in production. It handles the display of ISO 8859-1character

[sqlite] International Language Support

2005-08-04 Thread Dan Wellisch
Hello: We just put a SQLlite application in production. It handles the display of ISO 8859-1characters just fine if they appear in the search results. However, users that are running German, French, etc. versions of Microsoft Windows are complaining that search results are coming back with

Re: [sqlite] import function

2005-08-03 Thread Dan Wellisch
Jens: Thanks. I did see that suggested elsewhere in this list and I am proceeding that way in order to use any of the shell functionality. Thanks, Dan Jens Miltner wrote: Am 03.08.2005 um 20:50 schrieb Dan Wellisch: Hello: I understand there is the .import function for the sqlite3

[sqlite] import function

2005-08-03 Thread Dan Wellisch
Hello: I understand there is the .import function for the sqlite3 command interface, but I need to execute this function from within the C API. What do I use to do this? I need to execute this type of function from within my C++ program, not the command line. Thanks, Dan

Re: [sqlite] Problem when binding with like

2005-07-01 Thread Dan Wellisch
Richard: Are you saying that the statement should be.: wxString::Format(wxT("%s%s"),zipCodeValue.c_str(), "%"); ? Thanks, Dan D. Richard Hipp wrote: On Fri, 2005-07-01 at 14:51 -0500, Dan Wellisch wrote: zipCodeValue = wxString::Format(wxT("%s%s%s%s

[sqlite] Problem when binding with like

2005-07-01 Thread Dan Wellisch
Hello: //rc = sqlite3_prepare(db, "select latitude, longitude from zip_code where country_id = ? and zip_code like ?", -1, , 0); After I bind a string of the form '6008%' to the ? with: sqlite3_bind_text and then execute sqlite3_step(rowdata), the sqlite3_step fails. Following is my code