sqlite administrator

This is the international (english) support forum for the SQLite Administrator developed and maintained by Orbmu2k.

Moderators: gto, EgonHugeist, Orbmu2k

Locked
domi.papin
Fresh Boarder
Fresh Boarder
Posts: 13
Joined: 12.09.2006, 11:15

sqlite administrator

Post by domi.papin »

Hello,

I've used sql administrator to connect to a sqlite3 database. my database contains a table image of around 3000 records of 4 fields. the latest field is a binary blob containing the image.

If I display all the image table data, it takes a long 30 seconds to show up. How do you explain this ?

Dominique
zippo
Silver Boarder
Silver Boarder
Posts: 322
Joined: 12.10.2005, 18:01
Location: Slovenia

Post by zippo »

what do the blobs contain? Is there any average size estimation of blobs?
Also - watch the memory usage during table opening. Is there a possibility that the PC begins to swap (hint: massive disk LED blinking.. :) ) beacuse no more RAM available? If yes, then the tables are too big.

And of course - report here... :)
domi.papin
Fresh Boarder
Fresh Boarder
Posts: 13
Joined: 12.09.2006, 11:15

Post by domi.papin »

the blobs are filled with jpeg and png files. They are about 200ko average size.

SQLite Administrator doesn't swap as I have 1Go RAM and it allocates a max 11Mo
during table opening. But it hits a lot the hard disk.

By the way, I use SQLIte admin 0.8.2.6beta. Maybe there is a more recent exe.
Another hint is that the whole database file weights 625Mo.

Hope this helps......
Orbmu2k
SQLite Admin Developer
SQLite Admin Developer
Posts: 38
Joined: 07.12.2005, 07:51
Contact:

Post by Orbmu2k »

Where do you lookp the Table Data? At "Edit Data" Tab ... this uses a TZTable Object wich fetches all Data i mean. Try to use a simple query with and without selecting the blobfield. On Simple Querys you also can edit in the Result Grid.
Locked