On Fri, 13 Feb 2009 16:33:38 -0500, Nathan Biggs
<nbi...@mycfs.com> wrote in General Discussion of SQLite
Database <sqlite-users@sqlite.org>:

>Is there a faster way to read an entire table other then:
>
>select * from table;

It is the fastest SQL way.

>Not that is is slow, just curious.

The speed very much depends on what you do with the output.
If it scrolls over a terminal, the terminal will be the
bottleneck.
It should be very fast if you redirect the output to
/dev/null.
-- 
  (  Kees Nuyt
  )
c[_]
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to