Re: [sqlite] sqlite from fossil

2010-11-03 Thread Benjamin Peterson
PF petr...@... writes:

 You need to set:
 fossil setting manifest on

Thanks. Now fossil update says.

fossil: server says: login failed




___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] sqlite from fossil

2010-11-03 Thread Benjamin Peterson
Richard Hipp d...@... writes:
 Try setting:
 
  fossil setting autosync off
 
 before you do the
 
  fossil update

I actually get this from fossil clone http://sqlite.org/src;, too.




___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] sqlite from fossil

2010-11-02 Thread Benjamin Peterson
Running fossil update recently on my sqlite sources, and trying to build I get

$ ./configure
configure: error: configure script is out of date:
 configure $PACKAGE_VERSION = 3.7.3
 top level VERSION file = 3.7.4
please regen with autoconf


After running autoconf, I get:

If I update it manually, make complains about manifest.uuid missing.

What am I missing?

Regards,
Benjamin

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] BINARY type

2010-08-18 Thread Benjamin Peterson
Hi,
I was curious if there's a reason why BINARY as a column type doesn't produce a
column without a type affinity like BLOB. This would be one less special case
between SQLite and other RDMS.

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] lemon: error handling

2009-12-22 Thread Benjamin Peterson
I'm using lemon to write a parser for a little language I'm writing.
I'm wondering how I indicate to lemon that an error has occurred in
processing and an exit is needed. For example, if I have:

stmt(A) ::= NAME(B). { A = malloc(sizeof(stmt)); A-name = B; }

If malloc returns NULL, what should I do to escape the parser?

-- 
Regards,
Benjamin
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users