On Thu, 2005-03-03 at 19:00 -0600, David Taylor-Fuller wrote:
>        char* sqlStmt=sqlite3_mprintf("INSERT INTO %q
> (FileName,ArtistName,TrackNum,TrackName,AlbumName,Genre,Year) values
> (%q,%q,%q,%q,%q,%q,%q)",....
> Can Someone please I beg of you explain to me why I am getting the
> following error message
> 
> unrecognized token: ":"
> 

You need to put the %q in quotes, like this:  '%q'.
Or else use %Q which adds the quotes for you
automatically.

-- 
D. Richard Hipp <[EMAIL PROTECTED]>

Reply via email to