Re: [sqlite] Bug: sqlite ARM endian problem

2019-05-23 Thread Sebastian Kemper
On Wed, May 22, 2019 at 03:43:13PM -0400, Richard Hipp wrote: > On 5/22/19, Sebastian Kemper wrote: > > > > Hello Richard, > > > > I have run-tested this with qemu on two targets until now: > > > > arm_arm1176jzf-s_vfp > > armeb_xscale > > >

Re: [sqlite] Bug: sqlite ARM endian problem

2019-05-22 Thread Sebastian Kemper
On Mon, May 20, 2019 at 09:10:20PM +0200, Sebastian Kemper wrote: > On Mon, May 20, 2019 at 02:46:47PM -0400, Richard Hipp wrote: > > On 5/20/19, Sebastian Kemper wrote: > > > In OpenWrt's forum a user raised a topic about being unable to use > > > Ast

Re: [sqlite] Bug: sqlite ARM endian problem

2019-05-20 Thread Sebastian Kemper
On Mon, May 20, 2019 at 02:46:47PM -0400, Richard Hipp wrote: > On 5/20/19, Sebastian Kemper wrote: > > In OpenWrt's forum a user raised a topic about being unable to use > > Asterisk on his armeb xscale device. > > Please download a tarball of the latest trunk version o

[sqlite] Bug: sqlite ARM endian problem

2019-05-20 Thread Sebastian Kemper
Hello list, In OpenWrt's forum a user raised a topic about being unable to use Asterisk on his armeb xscale device. We narrowed it down to sqlite. Asterisk was unable to insert a simple table. Couldn't prepare statement 'CREATE TABLE IF NOT EXISTS astdb(key VARCHAR(256), value VARCHAR(256), PR

Re: [sqlite] SQLite 3.26.0 recursive CTE performance regression

2018-12-24 Thread Sebastian Bank
), the full query includes additional things like selecting properties of certain ancestors along the path. Best, Sebastian ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite

[sqlite] SQLite 3.26.0 recursive CTE performance regression

2018-12-22 Thread Sebastian Bank
3.26.0 it takes over 6 seconds (with the full data set of around 24000 items, it seems to become infeasible). Thanks and best, Sebastian Bank CREATE TABLE languoid ( id VARCHAR(8) NOT NULL, parent_id VARCHAR(8), PRIMARY KEY (id), FOREIGN KEY(parent_id) REFERENCES languoid (id) ); INSERT

Re: [sqlite] Invalid results on join and duplicate where clause (in-memory db only)

2018-10-29 Thread Sebastian Zwack
an UI which connected to an older SQLite. Case closed. Regards, Sebastian ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Invalid results on join and duplicate where clause (in-memory db only)

2018-10-26 Thread Sebastian Zwack
On Thu, Oct 25, 2018, at 16:20, Richard Hipp wrote: > Sebastian: Presumably this problem arose for you in a much larger and > more complex application. Can you please apply the patch from the > check-in above (or recompile using the latest trunk version of SQLite) > and verify for

[sqlite] Invalid results on join and duplicate where clause (in-memory db only)

2018-10-25 Thread Sebastian Zwack
S (2, 1, 2); INSERT INTO account VALUES (2, ''); -- returns [1, 2], expecting 1 SELECT user.id FROM user INNER JOIN account ON user.account = account.id WHERE user.active = 1 AND user.active = 1; This only affects the in-memory db, file based is working correctly. Do I miss something

Re: [sqlite] [EXTERNAL] Missing function sqlite3_column_index

2018-09-03 Thread Sebastian
suspected? Or both? Or something else? No big problem, I can work with sqlite3_column_name. It would just have been more convenient to have the reverse function, too. Sebastian On Mon, 3 Sep 2018 07:27:23 + Hick Gunter wrote: > The name of an output column is not even defined, muc

[sqlite] Missing function sqlite3_column_index

2018-09-02 Thread Sebastian
mention that in the documentation?) Sebastian ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] Getting parameters for sqlite3_blob_open from sqlite3_column_XXX functions

2018-09-02 Thread Sebastian
ed by sqlite3_column_database_name. Or at least use the same terms in both pages? The names returned are the original un-aliased symbolic name of the database, ... Sebastian ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.or

[sqlite] question about DB

2018-05-14 Thread sebastian bermudez
I need to know if there are some order of penalty in attach (2+) databases to make a small (3 tables) join... (one table per DB). vs. (3 tables on same DB). I need it to get a small order concurrency writes... I have 3 process writting to one to each DB. but i need query everithing w

Re: [sqlite] Build error in SQLite 3.18 if SQLITE_UNTESTABLE is defined

2018-04-10 Thread Priebe, Sebastian
esellschaft: 86167 Augsburg Registergericht: Amtsgericht Augsburg HRB 31802-Ursprüngliche Nachricht- Von: drhsql...@gmail.com Im Auftrag von Richard Hipp Gesendet: Dienstag, 10. April 2018 12:29 An: SQLite mailing list Cc: Priebe, Sebastian Betreff: Re: [sqlite] Build error in SQL

Re: [sqlite] Build error in SQLite 3.18 if SQLITE_UNTESTABLE is defined

2018-04-10 Thread Priebe, Sebastian
Hello, this error still exists. Please fix it. Greetings Sebastian SII Technologies GmbH Geschäftsführer: Robert Bauer Sitz der Gesellschaft: 86167 Augsburg Registergericht: Amtsgericht Augsburg HRB 31802-Ursprüngliche Nachricht- Von: Priebe, Sebastian Gesendet: Montag, 24. April

[sqlite] Build error in SQLite 3.18 if SQLITE_UNTESTABLE is defined

2017-04-25 Thread Priebe, Sebastian
ace it is used there is no such restiction. Greetings Sebastian -- +++ CADCON ist Mitglied der SII Group +++ Mehr auf unserer neuen Homepage > www.cadcon.de --

[sqlite] Why can't you find the Wiki by Navigation from the Homepage?

2014-09-18 Thread Sebastian
recently there was this on the mailing list: > Date: Thu, 18 Sep 2014 10:38:38 +0200 > From: RSmith > > On 2014/09/18 08:18, Keith Medcalf wrote: > > ...long article... > > Thanks Keith for taking the time, I imagine this is a topic you are > passionate about and I think it should be publish

Re: [sqlite] Store error messages in thread local memory

2012-10-01 Thread Sebastian Krysmanski
As a side note: I've compiled some performance data and published them as an article on my blog: http://manski.net/2012/10/01/sqlite-performance/ Do these result seem to be ok? - Sebastian On Mon, Sep 24, 2012 at 5:02 PM, Olaf Schmidt wrote: > Am 24.09.2012 11:26, schrieb S

Re: [sqlite] Switching journal mode from WAL to DELETE results in SQLITE_IOERR rather than SQLITE_READONLY (bug?)

2012-09-28 Thread Sebastian Krysmanski
Ok, then: is this the expected behavior? On Fri, Sep 28, 2012 at 3:29 PM, Richard Hipp wrote: > On Fri, Sep 28, 2012 at 9:23 AM, Sebastian Krysmanski > wrote: > > > Yes, I know that. It's just that the error code reported by > > "sqlite3_step()" is inconsis

Re: [sqlite] Switching journal mode from WAL to DELETE results in SQLITE_IOERR rather than SQLITE_READONLY (bug?)

2012-09-28 Thread Sebastian Krysmanski
Yes, I know that. It's just that the error code reported by "sqlite3_step()" is inconsistent. On Fri, Sep 28, 2012 at 3:21 PM, Richard Hipp wrote: > On Fri, Sep 28, 2012 at 9:09 AM, Sebastian Krysmanski > wrote: > > > Hi, > > > > I'm working on

[sqlite] Switching journal mode from WAL to DELETE results in SQLITE_IOERR rather than SQLITE_READONLY (bug?)

2012-09-28 Thread Sebastian Krysmanski
ndows "sqlite3_step()" returns "SQLITE_READONLY" in both directions but on Linux (or on Android, to be more precise) I get "SQLITE_READONLY" when changing from DELETE to WAL but I get "SQLITE_IOERR" ("disk I/O error") when changing from

[sqlite] Size of WAL file and cache

2012-09-26 Thread Sebastian Krysmanski
REDCACHE]) is stored in memory only (i.e. not on the disk), right? What's its size in memory? Or, on what factors does this size depend on? Thanks Sebastian ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Store error messages in thread local memory

2012-09-24 Thread Sebastian Krysmanski
/sec) Testing with multiple connections (ReadWrite) and filled table... Elapsed: 13.6 s (146,847.6 stmt/sec) - Sebastian On Mon, Sep 24, 2012 at 11:26 AM, Sebastian Krysmanski wrote: > Ok, I tried that. It definitely improves performance when using a lot > threads (15+) but decreas

Re: [sqlite] Store error messages in thread local memory

2012-09-24 Thread Sebastian Krysmanski
THREAD_COUNT: 100 Testing with one connection (ReadWrite) and filled table... Elapsed: 11.8 s (169,204.7 stmt/sec) Testing with multiple connections (ReadWrite) and filled table... Elapsed: 15.0 s (133,612.1 stmt/sec) - Sebastian On Fri, Sep 21, 2012 at 7:45 PM, Keith Medcalf wrote: > > On Frid

[sqlite] Documentation updates

2012-09-24 Thread Sebastian Krysmanski
of "sqlite3_enable_shared_cache" ( http://www.sqlite.org/c3ref/enable_shared_cache.html) it should be mentioned whether this function is thread-safe or not. Best regards Sebastian ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Store error messages in thread local memory

2012-09-21 Thread Sebastian Krysmanski
0 s Testing with multiple connections (ReadWrite) and filled table... Elapsed: 54.2 s - Sebastian On Fri, Sep 21, 2012 at 6:03 PM, Olaf Schmidt wrote: > Am 20.09.2012 17:40, schrieb Sebastian Krysmanski: > > > >> What's your threading mode? > >> http://www.sqlite.or

Re: [sqlite] Store error messages in thread local memory

2012-09-21 Thread Sebastian Krysmanski
Well, I thought that WAL and the old locking mechanisms allowed for concurrent read access. (That's why I thought this would be true for a shared connection as well - which apparently isn't true.) On Thursday, 20. September 2012 at 15:55, Keith Medcalf wrote: > > Two separate database connecti

Re: [sqlite] Store error messages in thread local memory

2012-09-21 Thread Sebastian Krysmanski
Ok - could you elaborate on the first "this is what one would expect". What difference does it make whether I use two threads or 20 threads with one connection when all operations are serialized? Shouldn't both cases have the same throughput? On Friday, 21. September 2012 at 03:52, Keith Medca

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
g > (mailto:sqlite-users-boun...@sqlite.org)] on behalf of Sebastian Krysmanski > [sql...@lists.manski.net (mailto:sql...@lists.manski.net)] > Sent: Thursday, September 20, 2012 10:25 AM > To: sqlite-users@sqlite.org (mailto:sqlite-users@sqlite.org) > Subject: EXT :Re: [sqlite] Store e

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
ating Unit > Northrop Grumman Information Systems > > > From: sqlite-users-boun...@sqlite.org > (mailto:sqlite-users-boun...@sqlite.org) [sqlite-users-boun...@sqlite.org > (mailto:sqlite-users-boun...@sqlite.org)] on behalf of Sebastian Kry

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
1.6 s -- SELECT_COUNT: 20,000 THREAD_COUNT: 100 Testing with one connections (ReadWrite) and filled table... Elapsed: 11.5 s Testing with one connections (ReadWrite) and filled table... Elapsed: 55.9 s On Thursday, 20. September 2012 at 16:22, Teg wrote: > Hello Sebastian, > > Is this tota

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
Well, I thought that WAL and the old locking mechanisms allowed for concurrent read access. (That's why I thought this would be true for a shared connection as well - which apparently isn't true.) On Thursday, 20. September 2012 at 15:55, Keith Medcalf wrote: > > Two separate database connecti

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
read, both cores are used. * Each thread gets its own compiled/prepared statement. I've posted the test code here: http://pastebin.com/RHXWfrdx Again, it's C# but should be understandable anyway. - Sebastian On Thursday, 20. September 2012 at 15:52, Black, Michael (IS) wrote: >

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
OINT Solutions Operating Unit > Northrop Grumman Information Systems > > > > > > > > > > > > > > > > On Thursday, 20. September 2012 at 15:23, Richard Hipp wrote: > > > > > > > On Thu, Sep 20, 2012 at 9:12 AM, Sebastian K

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
Ah - I didn't know that. Thanks for the clarification. On Thursday, 20. September 2012 at 15:28, Richard Hipp wrote: > On Thu, Sep 20, 2012 at 9:25 AM, Sebastian Krysmanski < > sql...@lists.manski.net (mailto:sql...@lists.manski.net)> wrote: > > > So you mean, that ev

Re: [sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
So you mean, that even read operations (SELECT) are not concurrent? On Thursday, 20. September 2012 at 15:23, Richard Hipp wrote: > On Thu, Sep 20, 2012 at 9:12 AM, Sebastian Krysmanski < > sql...@lists.manski.net (mailto:sql...@lists.manski.net)> wrote: > > > Hi, >

[sqlite] Store error messages in thread local memory

2012-09-20 Thread Sebastian Krysmanski
g the error message in thread local memory? (I'm a C# and Java developer, so I'm not sure whether thread local memory even exists in C. It does in C# and Java though.) Best regards Sebastian ___ sqlite-users mailing list sqlite-users@sqlite.or

Re: [sqlite] sqllite db - remote access on a shared host

2012-07-20 Thread Sebastian Bermudez
I know 3 desktop app... wich make an PHP tunnel to manage sqlite3 db... 1) Navigat SQL Free (has version for free) 2) SQL Maestro for sqlite (has version for free i think..) 3) Ems Manager for sqlite --- On Fri, 7/20/12, Kieran Hever wrote: > From: Kieran Hever > Subject: [sqlite] sqllit

[sqlite] sqlite as cache database

2012-03-14 Thread Sebastian Bermudez
i'm working on a small ecommerce site for latin america.. http://comercialibre.com this website is using sqlite3 for store website pages as cache there are some burst of 60 concurrent users and sqlite is working great for this app layout.. __

Re: [sqlite] How efficient is this?

2012-03-08 Thread Sebastian Bermudez
you can do: update t1 set (a,b)=(select a, b from t2 where t1.id=t2.id) just like oracle do --- On Thu, 3/8/12, Marc L. Allen wrote: > From: Marc L. Allen > Subject: [sqlite] How efficient is this? > To: "sqlite-users@sqlite.org" > Date: Thursday, March 8, 2012, 12:53 PM > I'm trying

[sqlite] Question about FTS

2011-09-21 Thread Sebastian Bermudez
ng without recompile sqlite ? (i have sqlite with php on shared hosting). att. sebastian ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] FTS: prefix wildcards?

2011-07-21 Thread Sebastian Vogelsang
es out there? Regards, Sebastian ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] my new site is using as backend sqlite

2011-07-14 Thread Sebastian Bermudez
] my new site is using as backend sqlite On 14-07-2011 21:40, Sebastian Bermudez wrote: > i have this new micro site ready for my personal office > > http://urlit.tk > > > this site is using sqlite as backend > > please, don't smile !! this is very very m

[sqlite] my new site is using as backend sqlite

2011-07-14 Thread Sebastian Bermudez
i have this new micro site ready for my personal office http://urlit.tk this site is using sqlite as backend please, don't smile !! this is very very micro site. for my personal url shorter function ___ sqlite-users mailing list sqlite

[sqlite] Index question about index

2011-07-14 Thread Sebastian Bermudez
simple question: i have table tsamov create table tsamov ( tsamov_id integer not null primary key ,tsamov_descri text, ,tsamov_code text ) i have index on tsamov_code (it's varchar column of lenght=5) could the next query use the tsamov_code index ??: select * from tsamov where tsamov_c

[sqlite] Database Locked

2011-05-25 Thread Sebastian Bermudez
I'm using sqlite v3 as database backend for an very small web app (some of 20 concurrent users -really serial access users-).. in Ms. Win xp (my test/develop env.) it work perfectly...my web app can handle that load(and even more by My JMeter Tests)... But on my production environment (L

[sqlite] Database Locked

2011-05-24 Thread Sebastian Bermudez
I'm using sqlite v3 as database backend for an very small web app (some of 20 concurrent users -really serial access users-).. in Ms. Win xp (my test/develop env.) it work perfectly...my web app can handle that load(and even more by My JMeter Tests)... But on my production environment (L

Re: [sqlite] Query Problem when Executed from PHP v5.2.9-2

2010-02-09 Thread Sebastian Bermudez
try : $strQuery ="SELECT CASE WHEN substr(substr(eTimeStart,1,2),-1) =\':\' THEN substr(eTimeStart,1,1)||substr(etimeStart,3,2) ELSE substr(eTimeStart,1,2)||substr(eTimeStart,4,2) END as aTIME FROM EVENTS WHERE Cast(eMonth as int)= 2 AND CAST(eYear as INT)=2010 and CAST(eDay as INT)=13 OR

[sqlite] Request Feature

2009-12-16 Thread Sebastian Bermudez
each SELECT-FOR-UPDATE query when uploading the scripts..and undo when donwload the site Can You support the FOR UPDATE construction in a dummy mode ??? Att. Sebastian Bermudez PD: sorry i don't study english Yahoo! Cocina Encontra las mejores recetas con Yahoo! Cocina. http:

[sqlite] has used anyone sqlite for production web sites ??

2009-10-29 Thread Sebastian Bermudez
i have an very small web site ( 60/80 Concurrent users )... running with mysql.. but i need transactions ( and my web hosting does not support innodb ) but have support for SQLITE 2.x & 3.x)... The web site has built with PHP using PDO.. the max..db-load for a requestis.

Re: [sqlite] how to represent a tree in SQL

2009-10-14 Thread Sebastian Bermudez
look this: http://dev.mysql.com/tech-resources/articles/hierarchical-data.html is for mysql but aplies to every sql DB - Mensaje original De: Michael Chen Para: sqlite-users@sqlite.org Enviado: mié, octubre 14, 2009 10:40:45 AM Asunto: [sqlite] how to represent a tree in SQL Dear t

Re: [sqlite] In-memory database backup

2009-09-30 Thread Sebastian Bermudez
you can attach a new slqite DB.. do insert into new_table_in_new_db select * from mem_table; deatach db - Mensaje original De: Andres Velasco Garcia Para: sqlite-users@sqlite.org Enviado: miércoles 30 de septiembre de 2009, 12:27:24 Asunto: [sqlite] In-memory database backup Hel

[sqlite] Ok. I found the error

2009-09-24 Thread Sebastian Bermudez
i can't call sqlite3_column_type before sqlite3_step !! from sqlite.org: "...If the SQL statement does not currently point to a valid row, or if the column index is out of range, the result is undefined. These routines may only be called when the most recent call to sqlite3_step() has returned S

[sqlite] sqlite3_column_type bad value

2009-09-24 Thread Sebastian Bermudez
i have 1 table: create table t1 ( id integer not null primary key, descri text ) then i exec... "SELECT * FROM t1" when i get the column type... with [ sqlite3_column_type(stmt,index); ] i get always (int)5 = SQLITE_NULL every else is correct !, i have the correct row count, field count; value

Re: [sqlite] SQLite Suitability for Shopping Cart

2009-09-22 Thread Sebastian Bermudez
No ! use mysql that Concurrency on sqlite have high depend... from HW. (sqlite handles transaction one at time !)... 100 Concurrent Tx. (5 sec. each one)...the last pooled user must to wait 500 sec... to complete --- El mar 22-sep-09, CityDev escribió: > De: CityDev > Asunto: [s

Re: [sqlite] Question on converting objects into relational db

2009-09-10 Thread Sebastian Bermudez
Objects maps to tables... fields maps to objects properties.. if you want just store all objects and read all objects create an entitites tables like: create table entity ( object as text ) and serialize that objects to database. --- El jue 10-sep-09, Shaun Seckman (Firaxis) escribió: >

[sqlite] Column MetaData

2009-09-09 Thread Sebastian Bermudez
ok. i'm develop... an PHP-WEB Sqlite TUNNEL that PHP get a request, process it and send results to client (desktop app) In the client side, i have my Own Ado Like Data Access components my Question is: my cliente send a query "select * from tableA" the PHP exec the query and return an

Re: [sqlite] how to save image to sqlite..

2009-09-08 Thread Sebastian Bermudez
i made it encoding image with base64... --- El lun 7-sep-09, Eka Rudito escribió: > De: Eka Rudito > Asunto: [sqlite] how to save image to sqlite.. > Para: sqlite-users@sqlite.org > Fecha: lunes, 7 de septiembre de 2009, 8:35 pm > hello there > > i am new bie in sqlite and this forum too.. >

Re: [sqlite] Slow SELECT query

2009-09-04 Thread Sebastian Bermudez
1) Ok, change the index to: CREATE INDEX IF NOT EXISTS log_idx ON log (timestamp) column Id is not used for select... the Id column just is needed for delete operation. 2) what's log period your app.have ? Need Year ? Month ? Day ? can you change the REAL data type for an smaller one ? (integ

Re: [sqlite] Defining user groups in SQLite table

2009-09-03 Thread Sebastian Bermudez
table groups ( group_id, group_descri ) table access ( rela_group, rela_code) --- El jue 3-sep-09, karenebs escribió: > De: karenebs > Asunto: [sqlite] Defining user groups in SQLite table > Para: sqlite-users@sqlite.org > Fecha: jueves, 3 de septiembre de 2009, 2:57 pm > > I have a databa

Re: [sqlite] Integer Storage class

2009-09-02 Thread Sebastian Bermudez
__ > From: sqlite-users-boun...@sqlite.org > [sqlite-users-boun...@sqlite.org] > On Behalf Of Simon Davies [simon.james.dav...@googlemail.com] > Sent: Wednesday, September 02, 2009 9:05 AM > To: General Discussion of SQLite Database > Subject: Re

Re: [sqlite] Integer Storage class

2009-09-02 Thread Sebastian Bermudez
> Fecha: miércoles, 2 de septiembre de 2009, 9:12 am > 2009/9/2 Sebastian Bermudez : > > hi! i have an table ( articles ) with a column for > EAN13 Barcodes like ( > > 7790080066784). > > I have created the column with Integer data type... ( > i have chose that da

[sqlite] Integer Storage class

2009-09-02 Thread Sebastian Bermudez
or 8 bytes depending on the magnitude of the value.") but when i insert this value for that column... i get 0 (cero) stored in that place... Have any idea ? Att. Sebastian PD: Sorry i don't study english Yahoo! Cocina Encontra las mejores recetas con Yahoo! Cocina. http://ar.mu

Re: [sqlite] SQLite locking problem with mozStorage

2009-08-16 Thread Sebastian Arcus
Hi Simon and Roger, Simon Slavin wrote: > On 15 Aug 2009, at 9:58am, Sebastian Arcus wrote: > > >> I've just noticed another interesting thing. A read operation after a >> write on same table (like a SELECT statement after an INSERT) works >> perfectly fine - i

Re: [sqlite] SQLite locking problem with mozStorage

2009-08-15 Thread Sebastian Arcus
Roger Binns wrote: > > Sebastian Arcus wrote: > >> Hi and thanks for the suggestion. I did as you advised and ran 'vmstat >> 1' in a terminal. Very little activity - maybe 20-40kb every 6-7 seconds >> on the bo - pretty much nothing on bi. Also, zeros a

Re: [sqlite] SQLite locking problem with mozStorage

2009-08-15 Thread Sebastian Arcus
Roger Binns wrote: > > Sebastian Arcus wrote: > >> Hi and thanks for the suggestion. I did as you advised and ran 'vmstat >> 1' in a terminal. Very little activity - maybe 20-40kb every 6-7 seconds >> on the bo - pretty much nothing on bi. Also, zeros a

Re: [sqlite] SQLite locking problem with mozStorage

2009-08-14 Thread Sebastian Arcus
Roger Binns wrote: > Sebastian Arcus wrote: > >> The SQLite documentation talks about entire database locks by operations >> of the order of milliseconds - 10 seconds seems a long way off. >> > > There is a possible but unlikely cause for what you are see

[sqlite] SQLite locking problem with mozStorage

2009-08-14 Thread Sebastian Arcus
able are fast. The setup is: OS: Slackware Linux 12.2 Kernel: 2.6.27.7 CPU: Intel Core 2 Duo ULV 2500 (1.2GHz) RAM: 2GB XULRunner: 1.9.0.7 SQLite: 3.6.6.2 Many thanks for any suggestions or ideas. Sebastian ___ sqlite-users mailing list sqlite-users

[sqlite] development vs production

2008-05-10 Thread sebastian stephenson
I see that sqlite is great for development but for production would that be a bright idea? see ya sebey ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] build sqlite(noob quedstion)

2008-05-08 Thread sebastian stephenson
Begin forwarded message: > From: sebastian stephenson <[EMAIL PROTECTED]> > Date: 8 May 2008 12:37:54 IST > To: sqlite-users@sqlite.org > > what do I need to do to build sqlite? > > see ya > > sebey > > see ya sebey __

[sqlite] (no subject)

2008-05-08 Thread sebastian stephenson
what do I need to do to build sqlite? see ya sebey ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] Re: Combining queries

2007-06-12 Thread Sebastian Tennant
Quoth "Igor Tandetnik" <[EMAIL PROTECTED]>: > Sebastian Tennant <[EMAIL PROTECTED]> > wrote: >> I have three tables; users, propositions, and subscriptions: >> >> users >> - >> user_id user_name user_password user_email >>

[sqlite] Combining queries

2007-06-11 Thread Sebastian Tennant
e he didn't propose them). B: SELECT prop_id FROM subscriptions WHERE (user_id = U03 ) prop_id P02 He can't subscribe to this one (becuase he is already subscribed to it.) Any help very much appreciated. Sebastian - To unsubscribe, send email to [EMAIL PROTECTED] -

[sqlite] Importing data without a primary key

2007-02-28 Thread Sebastian Tennant
much appreciated. Sebastian - To unsubscribe, send email to [EMAIL PROTECTED] -

[sqlite] Slow ORDER BY on INTEGER PRIMARY KEY

2004-12-17 Thread Setzer Sebastian (ext)
y key (doesn't make sense since its already there, does it?). Hav you got any explanations? Is this an expected behaviour or is it just a bug? The workaround is, of course, not to declare columns as INTEGER PRIMARY KEY if you want do ORDER BY them. Sebastian Setzer