Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread Shibu.Narayanan
There should be no single quotes around question marks

-Shibu

-Original Message-
From: sqlite-users-boun...@sqlite.org
[mailto:sqlite-users-boun...@sqlite.org] On Behalf Of P Kishor
Sent: Monday, February 02, 2009 6:14 PM
To: General Discussion of SQLite Database
Subject: Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

Farzana,

You can save a lot of email back-and-forth by showing your code in the
first place. The very minimum information that you (that anyone)
should provide when asking a code-related question is --

1. db schema
2. code

adding info about computer and operating system, plus any driver
version being used, is also advisable.

On Mon, Feb 2, 2009 at 6:40 AM, hussainfarzana
<hussainfarz...@gmail.com> wrote:
>
> Yes,the SQL prepared statement has got 14 placeholders.
>
> The statement is "INSERT INTO CollDataNum
> values(?,?,?,?,?,?,?,?,'?',?,?,?,?,?)"
>
> Regards,
> Farzana.
>
>
> SimonDavies wrote:
>>
>> 2009/2/2 hussainfarzana <hussainfarz...@gmail.com>:
>>>
>>> Dear All,
>>>
>>> We are working with SQLite Version 3.6.10.
>>> We tried to insert or update the records in the database using
>>> sqlite3_prepare and binding the values using sqlite3_bind
functions.We
>>> have
>>> started with the index 1.We have a table with 14 columns and when we
use
>>> sqlite3_bind_int,for the first 13 columns its returning 0 and for
the
>>> last
>>> 14th column which is also an integer datatype, but the function is
>>> returning
>>> value 25(SQLITE_RANGE) error.
>>
>> Your table may have 14 columns, but has the SQL for your prepared
>> statement got 14 parameter placeholders?
>>
>>>
>>> Please help us how to proceed further.
>>>
>>> Regards,
>>> Farzana.
>>
>> Rgds,
>> Simon
>> ___
>> sqlite-users mailing list
>> sqlite-users@sqlite.org
>> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>>
>>
>
> --
> View this message in context:
http://www.nabble.com/sqlite3_bind_int-returns-SQLITE_RANGE-tp21788383p2
1788991.html
> Sent from the SQLite mailing list archive at Nabble.com.
>
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



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


DISCLAIMER:
This message contains privileged and confidential information and is intended 
only for an individual named. If you are not the intended recipient, you should 
not disseminate, distribute, store, print, copy or deliver this message. Please 
notify the sender immediately by e-mail if you have received this e-mail by 
mistake and delete this e-mail from your system. E-mail transmission cannot be 
guaranteed to be secure or error-free as information could be intercepted, 
corrupted, lost, destroyed, arrive late or incomplete or contain viruses. The 
sender, therefore,  does not accept liability for any errors or omissions in 
the contents of this message which arise as a result of e-mail transmission. If 
verification is required, please request a hard-copy version.
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread Igor Tandetnik
"hussainfarzana"
 wrote in
message news:21788991.p...@talk.nabble.com
> Yes,the SQL prepared statement has got 14 placeholders.
>
> The statement is "INSERT INTO CollDataNum
> values(?,?,?,?,?,?,?,?,'?',?,?,?,?,?)"

No, there are only thirteen. '?' is not a parameter placeholder, it's a 
string literal consisting of a single question mark character.

Igor Tandetnik



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


Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread Martin.Engelschalk
Hi,

no, you habe 13 placeholders and one string constant '?' on position 9.
You do not need to include the ? in quotes if the value you want to bind 
is a string.

Martin

hussainfarzana schrieb:
> Yes,the SQL prepared statement has got 14 placeholders.
>
> The statement is "INSERT INTO CollDataNum
> values(?,?,?,?,?,?,?,?,'?',?,?,?,?,?)"
>
> Regards,
> Farzana.
>
>
> SimonDavies wrote:
>   
>> 2009/2/2 hussainfarzana :
>> 
>>> Dear All,
>>>
>>> We are working with SQLite Version 3.6.10.
>>> We tried to insert or update the records in the database using
>>> sqlite3_prepare and binding the values using sqlite3_bind functions.We
>>> have
>>> started with the index 1.We have a table with 14 columns and when we use
>>> sqlite3_bind_int,for the first 13 columns its returning 0 and for the
>>> last
>>> 14th column which is also an integer datatype, but the function is
>>> returning
>>> value 25(SQLITE_RANGE) error.
>>>   
>> Your table may have 14 columns, but has the SQL for your prepared
>> statement got 14 parameter placeholders?
>>
>> 
>>> Please help us how to proceed further.
>>>
>>> Regards,
>>> Farzana.
>>>   
>> Rgds,
>> Simon
>> ___
>> sqlite-users mailing list
>> sqlite-users@sqlite.org
>> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>>
>>
>> 
>
>   

-- 

* Codeswift GmbH *
Traunstr. 30
A-5026 Salzburg-Aigen
Tel: +49 (0) 8662 / 494330
Mob: +49 (0) 171 / 4487687
Fax: +49 (0) 12120 / 204645
engelsch...@codeswift.com
www.codeswift.com / www.swiftcash.at

Codeswift Professional IT Services GmbH
Firmenbuch-Nr. FN 202820s
UID-Nr. ATU 50576309

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


Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread P Kishor
Farzana,

You can save a lot of email back-and-forth by showing your code in the
first place. The very minimum information that you (that anyone)
should provide when asking a code-related question is --

1. db schema
2. code

adding info about computer and operating system, plus any driver
version being used, is also advisable.

On Mon, Feb 2, 2009 at 6:40 AM, hussainfarzana  wrote:
>
> Yes,the SQL prepared statement has got 14 placeholders.
>
> The statement is "INSERT INTO CollDataNum
> values(?,?,?,?,?,?,?,?,'?',?,?,?,?,?)"
>
> Regards,
> Farzana.
>
>
> SimonDavies wrote:
>>
>> 2009/2/2 hussainfarzana :
>>>
>>> Dear All,
>>>
>>> We are working with SQLite Version 3.6.10.
>>> We tried to insert or update the records in the database using
>>> sqlite3_prepare and binding the values using sqlite3_bind functions.We
>>> have
>>> started with the index 1.We have a table with 14 columns and when we use
>>> sqlite3_bind_int,for the first 13 columns its returning 0 and for the
>>> last
>>> 14th column which is also an integer datatype, but the function is
>>> returning
>>> value 25(SQLITE_RANGE) error.
>>
>> Your table may have 14 columns, but has the SQL for your prepared
>> statement got 14 parameter placeholders?
>>
>>>
>>> Please help us how to proceed further.
>>>
>>> Regards,
>>> Farzana.
>>
>> Rgds,
>> Simon
>> ___
>> sqlite-users mailing list
>> sqlite-users@sqlite.org
>> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>>
>>
>
> --
> View this message in context: 
> http://www.nabble.com/sqlite3_bind_int-returns-SQLITE_RANGE-tp21788383p21788991.html
> Sent from the SQLite mailing list archive at Nabble.com.
>
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



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


Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread hussainfarzana

Yes,the SQL prepared statement has got 14 placeholders.

The statement is "INSERT INTO CollDataNum
values(?,?,?,?,?,?,?,?,'?',?,?,?,?,?)"

Regards,
Farzana.


SimonDavies wrote:
> 
> 2009/2/2 hussainfarzana :
>>
>> Dear All,
>>
>> We are working with SQLite Version 3.6.10.
>> We tried to insert or update the records in the database using
>> sqlite3_prepare and binding the values using sqlite3_bind functions.We
>> have
>> started with the index 1.We have a table with 14 columns and when we use
>> sqlite3_bind_int,for the first 13 columns its returning 0 and for the
>> last
>> 14th column which is also an integer datatype, but the function is
>> returning
>> value 25(SQLITE_RANGE) error.
> 
> Your table may have 14 columns, but has the SQL for your prepared
> statement got 14 parameter placeholders?
> 
>>
>> Please help us how to proceed further.
>>
>> Regards,
>> Farzana.
> 
> Rgds,
> Simon
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/sqlite3_bind_int-returns-SQLITE_RANGE-tp21788383p21788991.html
Sent from the SQLite mailing list archive at Nabble.com.

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


Re: [sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread Simon Davies
2009/2/2 hussainfarzana :
>
> Dear All,
>
> We are working with SQLite Version 3.6.10.
> We tried to insert or update the records in the database using
> sqlite3_prepare and binding the values using sqlite3_bind functions.We have
> started with the index 1.We have a table with 14 columns and when we use
> sqlite3_bind_int,for the first 13 columns its returning 0 and for the last
> 14th column which is also an integer datatype, but the function is returning
> value 25(SQLITE_RANGE) error.

Your table may have 14 columns, but has the SQL for your prepared
statement got 14 parameter placeholders?

>
> Please help us how to proceed further.
>
> Regards,
> Farzana.

Rgds,
Simon
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] sqlite3_bind_int returns SQLITE_RANGE

2009-02-02 Thread hussainfarzana

Dear All,

We are working with SQLite Version 3.6.10.
We tried to insert or update the records in the database using
sqlite3_prepare and binding the values using sqlite3_bind functions.We have
started with the index 1.We have a table with 14 columns and when we use
sqlite3_bind_int,for the first 13 columns its returning 0 and for the last
14th column which is also an integer datatype, but the function is returning
value 25(SQLITE_RANGE) error.

Please help us how to proceed further.

Regards,
Farzana.
-- 
View this message in context: 
http://www.nabble.com/sqlite3_bind_int-returns-SQLITE_RANGE-tp21788383p21788383.html
Sent from the SQLite mailing list archive at Nabble.com.

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