Kalyani Phadke
wrote:
Yes , It worked.
Could you pls tell me whats the difference between adLongVarWChar and
adLongVarChar? Does SQLite support Unicode encoding(UTF-8)?
SQLite does support UTF-8. But I suspect ADO actually converts the data
to Windows current code page when adLongVarChar is s
On 14/11/2007, Jevgenijs Rogovs <[EMAIL PROTECTED]> wrote:
> Sounds too complicated for this simple situation...
> Can anything be done w/o coding?
>
Why not change
INSERT INTO sometable VALUES ('blablabla\r\nyadayadayada');
into
INSERT INTO sometable VALUES ('blablabla
yadayadayada');
(real r
Sounds too complicated for this simple situation...
Can anything be done w/o coding?
On Nov 14, 2007 3:53 PM, Igor Tandetnik <[EMAIL PROTECTED]> wrote:
> Jevgenijs Rogovs <[EMAIL PROTECTED]>
> wrote:
> > Thanks, but how do I use those?
> > See, I have a huge file of INSERT statements, which look
Jevgenijs Rogovs <[EMAIL PROTECTED]>
wrote:
Thanks, but how do I use those?
See, I have a huge file of INSERT statements, which look like this:
INSERT INTO sometable VALUES ('blablabla\r\nyadayadayada');
Prepare a single statement of the form
INSERT INTO sometable VALUES (?);
Then read your
Christian POMPIER <[EMAIL PROTECTED]> wrote:
De : Igor Tandetnik [mailto:[EMAIL PROTECTED]
Christian POMPIER
<[EMAIL PROTECTED]> wrote:
Could i make to insert 10 000 row in my table with a loop ?
Yes.
But what is the good syntax ?
The syntax of the INSERT statement is described here:
http
Ah, Ha! I got it to work. Thanks for your help.
-Original Message-
From: Igor Tandetnik [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 24, 2006 5:31 PM
To: SQLite
Subject: [sqlite] Re: Re: Insert triggers
Dennis Cote wrote:
> Igor Tandetnik wrote:
>> SQLite does no
Dennis Cote wrote:
Igor Tandetnik wrote:
SQLite does not support cascading triggers. Operations performed by a
trigger never cause other triggers to run.
This is not true. SQLite supports multiple triggers on the same event
(insert, update, or delete) on a single table and it fires all
trigge
7 matches
Mail list logo