Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Alex Katebi
Hi Dennis, I am sorry I was wrong about triggers. My understanding of triggers was incorrect. Triggers are part of the same connection. I will take your suggestions. I will let you know. Thanks so much for helping out! -Alex On Thu, Apr 17, 2008 at 6:11 PM, Dennis Cote <[EMAIL PROTECTED]> wrote:

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Dennis Cote
Alex Katebi wrote: > My problem is that triggers don't trigger until after commit. > No, that is not your problem. You haven't tried anything yet. This is a trace of SQlite executing the code I posted. There is not a commit in sight, and yet it works as expected. I added an unqualified select

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Alex Katebi
My problem is that triggers don't trigger until after commit. On Thu, Apr 17, 2008 at 4:52 PM, Dennis Cote <[EMAIL PROTECTED]> wrote: > Alex Katebi wrote: > > I will give a simple example: > > > > create table t1(name); > > insert into t1('Alex'); > > begin; > > insert into t1 values ('Dennis');

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Dennis Cote
Alex Katebi wrote: > I will give a simple example: > > create table t1(name); > insert into t1('Alex'); > begin; > insert into t1 values ('Dennis'); > select * from t1; > > How can I see only the 'Dennis' row in this simple example. > As I said before, use a trigger to keep track of the

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Derrell Lipman
On Thu, Apr 17, 2008 at 3:15 PM, Alex Katebi <[EMAIL PROTECTED]> wrote: > I will give a simple example: > > create table t1(name); > insert into t1('Alex'); > begin; > insert into t1 values ('Dennis'); > select * from t1; > > The above will show two rows. How can I see only the 'Dennis' row in

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Alex Katebi
I will give a simple example: create table t1(name); insert into t1('Alex'); begin; insert into t1 values ('Dennis'); select * from t1; The above will show two rows. How can I see only the 'Dennis' row in this simple example. On Thu, Apr 17, 2008 at 2:57 PM, Dennis Cote <[EMAIL PROTECTED]>

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Alex Katebi
Actually I am not interested on rows that have been committed. I am interested on the rows that have been changed but not commited yet. As I understand the triggers trigger of of a commit. The example that you are refering to is for undoing the already commited rows. I am merely interested in

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Dennis Cote
Alex Katebi wrote: >Can you give an example on how to use this. Basically I want to see > (select) only the uncommited rows. > You will have to keep track of the rows that have been changed yourself. You can have SQLite do it for you if you create a change_log table and then setup triggers

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Alex Katebi
Martin, Can you give an example on how to use this. Basically I want to see (select) only the uncommited rows. Thanks! -Alex On Thu, Apr 17, 2008 at 11:58 AM, Ken <[EMAIL PROTECTED]> wrote: > I believe the pragma read_uncommitted only works for shared cache mode and > threads. > > You'll

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Ken
I believe the pragma read_uncommitted only works for shared cache mode and threads. You'll have to select the data from the same connection that created the data. "Martin.Engelschalk" <[EMAIL PROTECTED]> wrote: Hi, there is a pragma: PRAGMA read_uncommitted = 1; You can select the

Re: [sqlite] selecting uncommited rows

2008-04-17 Thread Martin.Engelschalk
Hi, there is a pragma: PRAGMA read_uncommitted = 1; You can select the uncommitted data and show ist before commit. Have a look here: http://www.sqlite.org/pragma.html Martin Alex Katebi schrieb: > Hi All, > > Let's say I start a transaction and do bunch of insertions etc. Before my > commit I

[sqlite] selecting uncommited rows

2008-04-17 Thread Alex Katebi
Hi All, Let's say I start a transaction and do bunch of insertions etc. Before my commit I like to show (select) what I have configured. How can I accompilish this? Thanks, -Alex ___ sqlite-users mailing list sqlite-users@sqlite.org