|
I would say that is a limitation of SQLite.
Basically you can only store text. You can not really store a blob.
I would fix this by implementing a size parameter
in the exec function so you don't have to rely on NULL terminated
strings.
----- Original Message -----
Sent: Tuesday, November 19, 2002 1:19
PM
Subject: Re: [sqlite] Objects in
Database
It's not strictly typeless: all data is stored as C-style
strings. You can store any data in it which does not contain the null
('\0') character.
On Tue, Nov 19, 2002 at 07:46:29PM -0000,
richa_verma77 wrote: > Hi All, > > I have just started
evaluating SQLite. I have a little question. Can > I store objects in
the database? As the documentation states, SQLite > is typeless, so I
guess I should not have a problem apart from the > 2GB limit
ofcourse. > > Thanks
Mike Swieton -- Semper
Fidelis Dawn star flares on disk of night I fall, sun
rises - Neal Stephenson
To
unsubscribe from this group, send an email
to: sqlite-unsubscribe-VgYJa0VH1e9BDgjK7y7TUQ@xxxxxxxxxxxxxxxx
Your use of
Yahoo! Groups is subject to the Yahoo! Terms of Service.
To unsubscribe from this group, send an email to:
sqlite-unsubscribe-VgYJa0VH1e9BDgjK7y7TUQ@xxxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|