RE: [sqlite] Re: Insert chinese characters in SQLite database

2007-12-13 Thread Kalyani Phadke
] Re: Insert chinese characters in SQLite database Kalyani Phadke wrote: > The following query inserts into the database > > Cmd1 .Parameters.Append(Cmd1 .CreateParameter("ipaddress", > adLongVarChar, adParamInput, 50, ipaddress)) Try adLongVarWChar for parameter

[sqlite] Re: Insert chinese characters in SQLite database

2007-12-13 Thread Igor Tandetnik
Kalyani Phadke wrote: The following query inserts into the database Cmd1 .Parameters.Append(Cmd1 .CreateParameter("ipaddress", adLongVarChar, adParamInput, 50, ipaddress)) Try adLongVarWChar for parameter type. Igor Tandetnik --