[Pljava-dev] Question regarding triggers and data visibility

Lists: PostgreSQL : PostgreSQL 메일 링리스트 : 2005-11-14 14:08 이후 사설 토토Dev
From: JBurtenshaw at cooperstandard(dot)com (Burtenshaw, John J(dot))
To:
Subject: [Pljava-dev] Question regarding triggers and data visibility
Date: 2005-11-14 13:59:46
Message-ID: 75F39425D1954A4380D5C9E1D630CDC903C30B77@C2A007.stratford.auto.cooperintra.ctb
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pljava-dev


Rakesh: You are right that I should be able to pass the new information to the Daemon through the network but the one inconvenient problem is that the ResultSet object is not serializable which is a requirement for RMI objects. I suppose I could break the result down to a serialized string stream or something to that effect. Can you think of another way?

Thanks again
John Burtenshaw

-----Original Message-----
From: pljava-dev-bounces at gborg.postgresql.org on behalf of Rakesh Vidyadharan
Sent: Fri 11/11/2005 5:12 PM
Cc: Pljava-dev at gborg.postgresql.org
Subject: Re: [Pljava-dev] Question regarding triggers and data visibility

On Nov 11, 2005, at 4:07 PM, Rakesh Vidyadharan wrote:

>
> On Nov 11, 2005, at 3:57 PM, Burtenshaw, John J. wrote:
>
>> Thanks for the quick reply Rakesh. It turns out I was not using
>> transaction blocks (i.e. allowing "autocommit") so I just tried
>> the insert statement in a Begin/commit block and it did not make a
>> difference. Any other ideas as to what could cause this strange
>> phenomena?
> I believe the problem is caused by the fact that the message is
> sent from a trigger. If I am not mistaken, the database
> modification would not have been committed until the trigger
> returns successfully, at which point the transaction would have
> been committed. Does the trigger just send a message, or does it
> wait for a response?

Come to think of it, since the trigger already has access to the
information in the record being inserted, there should be no reason
for the remote object to fetch the new record from the database. You
should be able to send a transfer object with the data to the remote
object. I do not think you will save any network bandwidth using
this technique, since you will be spending some anyway to fetch from
the database.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20051114/2798e85a/attachment.html>


From: rakesh at rakeshv(dot)org (Rakesh Vidyadharan)
To:
Subject: [Pljava-dev] Question regarding triggers and data visibility
Date: 2005-11-14 14:08:16
Message-ID: 80D2F08F-985B-4A3E-A81C-446FE592514C@rakeshv.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: PostgreSQL : PostgreSQL 메일 링리스트 : 2005-11-14 14:08 이후 사설 토토Dev


On 14 Nov 2005, at 07:59, Burtenshaw, John J. wrote:

>
> Rakesh: You are right that I should be able to pass the new
> information to the Daemon through the network but the one
> inconvenient problem is that the ResultSet object is not
> serializable which is a requirement for RMI objects. I suppose I
> could break the result down to a serialized string stream or
> something to that effect. Can you think of another way?
I do not know any other convenient way to pass the information. I
think the easiest way is to create a transfer object. If you have
created PGobject sub-classes to represent your data, then you already
have it. If not, just create a custom transfer object and pass that
to the RMI object. You can also pass custom strings, or XML if
performance is not an absolute must. You can easily create the
transfer object or String representation from the information in the
Trigger.

Rakesh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.pgfoundry.org/pipermail/pljava-dev/attachments/20051114/7c07111c/attachment.html>