[sqlite] SQLite speed tests

2006-01-18 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 SQLite was tested in the same configuration that it appears on the website. It was compiled with -O6 optimization and with the -DNDEBUG=1 switch which disables the many "assert()" statements in the SQLite code. The -DNDEBUG=1 compiler option

Re: [sqlite] sqlite3 CLI and blobs

2005-02-08 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christian Smith wrote: > On Tue, 8 Feb 2005, John Richard Moser wrote: > > > Does the sqlite3 command line interface program support BLOB data? > > I am thinking of feeding sql commands to sqlite3 (the command). In the >

Re: [sqlite] sqlite3 CLI and blobs

2005-02-08 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kurt Welgehausen wrote: >>... feeding sql commands to sqlite3 (the command) > > > The SQLite shell is not really designed for production > work. It can be used as you suggest for routine queries, > but for anything more complicated, you'll have

[sqlite] sqlite3 CLI and blobs

2005-02-07 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Does the sqlite3 command line interface program support BLOB data? I am considering that my choice of C may not have been the greatest idea in tackling the problem of writing a package manager. There is much already to do what I need to do, and I

Re: [sqlite] Version 3.1.0

2005-01-21 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Uh. The core is better. Try benching a Barton (32 bit) next to a P4, you'll see. I think it takes something like a 266MHz barton to clock with a 1GHz P4. I estimate a clawhammer core at probably ~1.25-1.5x faster than a Barton core; but with the

Re: [sqlite] Version 3.1.0

2005-01-21 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'd probably suggest something about how to set BLOB data from a void* and an int in 1 line of code, if I had any idea at all how blob data is set now. I found an example, but it was something like 400 lines long, overly complex (loading a blob into

Re: [sqlite] BLOB data examples?

2005-01-15 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ok, screw it, I'm storing configuration files, policies, and POSIX ACLs, I'll figure out blobbing later; I've only mastered like 3 functions from SQLite's C API, so I've got other things to worry about. For now, base64 . . . John Richard Moser wrote

[sqlite] BLOB data examples?

2005-01-15 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The documentation at [1] is confusing me. Does anyone have a URI or such where I could see examples of code to set and read BLOB data? I feel I may be looking at this as too simple a task. . . [1] http://sqlite.org/capi3ref.html - -- All content

Re: [sqlite] sql tables. . .?

2005-01-14 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Here's a question. I'm doing a file table with ( path text, name text, ... ) And I know definitely I'll want to search for "name" where /usr/lib/libgtk.so is name=libgtk.so Now for path, will I ever care to search for '/usr/lib/'? Or would

Re: [sqlite] SQLite openning a database

2005-01-14 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christian Smith wrote: > On Fri, 14 Jan 2005, John Richard Moser wrote: > >>-BEGIN PGP SIGNED MESSAGE- >>Hash: SHA1 >> >> >> >>D. Richard Hipp wrote: >> >> >>>I don't *t

Re: [sqlite] SQLite openning a database

2005-01-13 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 D. Richard Hipp wrote: > Christian Smith wrote: > >>> /tmp/ is rwx by anyone >>> root stats /tmp/tmpdb.root.1072 (pid==1072) >>> Nonexistant >>> User ln -s /etc/fstab /tmp/tmpdb.root.1072 >>> root creates /tmp/tmpdb.root.1072 >>> fstab erased. >>>

Re: [sqlite] sql tables. . .?

2005-01-13 Thread John Richard Moser
be useful. Interesting, dependencies(/conflicts) in their own table. Christian Smith wrote: > On Sat, 8 Jan 2005, John Richard Moser wrote: > > >>-BEGIN PGP SIGNED MESSAGE- >>Hash: SHA1 >> >>What can be in an SQL table? >> >>Can tables contain tab

Re: [sqlite] SQLite openning a database

2005-01-12 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christian Smith wrote: > On Tue, 11 Jan 2005, John Richard Moser wrote: > > >>-BEGIN PGP SIGNED MESSAGE- >>Hash: SHA1 >> >>http://rafb.net/paste/results/jRFmZD25.html >> >>This is code from

[sqlite] SQLite openning a database

2005-01-11 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 http://rafb.net/paste/results/jRFmZD25.html This is code from a package manager I'm writing based on SQLite. These two functions open a database, creating it if it doesn't exist. While most of this isn't of general interest, I'd like to point out that

Re: [sqlite] excessive malloc() calls

2005-01-10 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ~From what I can tell people are just in shock and awe that checking 3000 tables each holding several years of data for a company (again: several years of data for 3000 different companies) calls malloc() several million times. Interesting enough,

[sqlite] data types

2005-01-09 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 http://www.w3schools.com/sql/sql_create.asp Data types given there http://www.sqlite.org/datatype3.html Data types given here Is it ok to use the SQL data types given by w3schools? Or must I strictly use TEXT, NULL, INTEGER, BLOB, and NUMERIC? - --

Re: [sqlite] sql tables. . .?

2005-01-09 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mrs. Brisby wrote: | On Sat, 2005-01-08 at 00:04 -0500, John Richard Moser wrote: | |>What can be in an SQL table? | | | Tuples. | | like Baby from DBGT? [...] - -- All content of all messages exchanged herein are left in the Public Domain, unl

Re: [sqlite] sql tables. . .?

2005-01-07 Thread John Richard Moser
ble (data) inside a table (group) inside a table (subcategory) inside a table (category) logically. SQL databases, can they handle this literal hierarchy, or do I not have the ability to embed tables in tables? John Richard Moser wrote: | What can be in an SQL table? | | Can tables contain tables

Re: [sqlite] sqlite3_open() exclusive?

2005-01-06 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andrew Piskorski wrote: | On Fri, Dec 24, 2004 at 07:32:07PM -0500, John Richard Moser wrote: | | |>I thought sqlite databases weren't supposed to be opened with two sqlite |>processes at once. There are unimplemented locking comman

Re: [sqlite] sqlite3_open() exclusive?

2004-12-24 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 D. Richard Hipp wrote: | John Richard Moser wrote: | |> |> I thought sqlite databases weren't supposed to be opened with two sqlite |> processes at once. There are unimplemented locking commands due to this |> right? |> | | Whe

Re: [sqlite] sqlite3_open() exclusive?

2004-12-24 Thread John Richard Moser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I thought sqlite databases weren't supposed to be opened with two sqlite processes at once. There are unimplemented locking commands due to this right? I'm bouncing back and forth in my head trying to decide if I should use mysql or sqlite to write a