views:

141

answers:

0

Hi all,

May be its a silly question but I am a bit confused in it, I want to bind a character into sqlite database (neither as varchar, nor as text but as character only)

Hence we can not use

sqlite3_bind_text(insertStmt, 1, @"A", -1, SQLITE_TRANSIENT);

So should I use

sqlite_bind_int(insertStmt,1,65);

or there is a better way to do it?