Lists: | pgsql-jdbc |
---|
From: | Ned Wolpert <wolpert(at)yahoo(dot)com> |
---|---|
To: | Barry Lind <barry(at)xythos(dot)com>, Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | ConnectionPoolDataSource submittal |
Date: | 2001-11-04 19:54:45 |
Message-ID: | 20011104195445.636.qmail@web13404.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Folks-
I finished an implementation of the ConnectionPoolDataSource that is
functional. I've included in this email the relavant code (tar, gziped):
org/postgresql/PostgresqlConnectionPoolDataSource.java
org/postgresql/psqlProps.properties
org/postgresql/util/DefaultProperties.java
org/postgresql/jdbc2/PostgresqlPooledConnection.java
(What is the normal way to send in new files for the driver? Is attachment
prefered?) They are also on my website at
http://members.home.net/wolpert5/code/
as well. The only additions left to make is
1) Cleaning thread to close unused connections
2) Wrap objects returned by the connection so errors are caught on that
level too.
3) Move all exceptions to throw PSQLException rather than SQLException.
(So they'll use the errors.properties file instead of being hard
coded.)
I'll do these if people like the code I've submitted. The code should
function properly, and is fully commented in the relavent areas. The
DefaultProperties.java class I submited has also been updated; it nolonger
throws exceptions due to read errors, and does not synchronize access to
itself. Please comment on my submittial, and if I'm going about my
updates
correctly. (And if you have improvements for my code. :-)
Thanks
=====
Virtually, | "Must you shout too?"
Ned Wolpert | -Dante
wolpert(at)yahoo(dot)com |
_________________/ "Who watches the watchmen?"
4e75 -Juvenal, 120 AD
-- Place your commercial here -- fnord
__________________________________________________
Do You Yahoo!?
Find a job, post your resume.
http://careers.yahoo.com
Attachment | Content-Type | Size |
---|---|---|
codeSubmittal.tgz | application/x-unknown | 9.7 KB |
From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Ned Wolpert <wolpert(at)yahoo(dot)com> |
Cc: | Barry Lind <barry(at)xythos(dot)com>, psql-jdbc <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2001-12-03 16:35:46 |
Message-ID: | 200112031635.fB3GZk617215@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
I will save this for 7.3:
http://216.55.132.35/cgi-bin/pgpatches2
---------------------------------------------------------------------------
> Folks-
>
> I finished an implementation of the ConnectionPoolDataSource that is
> functional. I've included in this email the relavant code (tar, gziped):
>
> org/postgresql/PostgresqlConnectionPoolDataSource.java
> org/postgresql/psqlProps.properties
> org/postgresql/util/DefaultProperties.java
> org/postgresql/jdbc2/PostgresqlPooledConnection.java
>
> (What is the normal way to send in new files for the driver? Is attachment
> prefered?) They are also on my website at
> http://members.home.net/wolpert5/code/
> as well. The only additions left to make is
>
> 1) Cleaning thread to close unused connections
> 2) Wrap objects returned by the connection so errors are caught on that
> level too.
> 3) Move all exceptions to throw PSQLException rather than SQLException.
> (So they'll use the errors.properties file instead of being hard
> coded.)
>
> I'll do these if people like the code I've submitted. The code should
> function properly, and is fully commented in the relavent areas. The
> DefaultProperties.java class I submited has also been updated; it nolonger
>
> throws exceptions due to read errors, and does not synchronize access to
> itself. Please comment on my submittial, and if I'm going about my
> updates
> correctly. (And if you have improvements for my code. :-)
>
> Thanks
>
> =====
> Virtually, | "Must you shout too?"
> Ned Wolpert | -Dante
> wolpert(at)yahoo(dot)com |
> _________________/ "Who watches the watchmen?"
> 4e75 -Juvenal, 120 AD
>
> -- Place your commercial here -- fnord
>
> __________________________________________________
> Do You Yahoo!?
> Find a job, post your resume.
> http://careers.yahoo.com
>
Content-Description: codeSubmittal.tgz
[ Attachment, skipping... ]
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From: | "Dave Cramer" <Dave(at)micro-automation(dot)net> |
---|---|
To: | "'Ned Wolpert'" <wolpert(at)yahoo(dot)com> |
Cc: | "'psql-jdbc'" <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2001-12-03 16:46:00 |
Message-ID: | 006d01c17c19$fd1bd1d001a8c0@inspiron |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Ned,
I didn't forget about this code, I am waiting until version 7.2 is
released, and then I will commit it to cvs.
DAve
-----Original Message-----
From: pgsql-jdbc-owner(at)postgresql(dot)org
[mailto:pgsql-jdbc-owner(at)postgresql(dot)org] On Behalf Of Ned Wolpert
Sent: Monday, December 03, 2001 11:05 AM
To: Barry Lind; Bruce Momjian
Cc: psql-jdbc
Subject: [JDBC] ConnectionPoolDataSource submittal
Folks-
I finished an implementation of the ConnectionPoolDataSource that is
functional. I've included in this email the relavant code (tar,
gziped):
org/postgresql/PostgresqlConnectionPoolDataSource.java
org/postgresql/psqlProps.properties
org/postgresql/util/DefaultProperties.java
org/postgresql/jdbc2/PostgresqlPooledConnection.java
(What is the normal way to send in new files for the driver? Is
attachment
prefered?) They are also on my website at
http://members.home.net/wolpert5/code/
as well. The only additions left to make is
1) Cleaning thread to close unused connections
2) Wrap objects returned by the connection so errors are caught on that
level too.
3) Move all exceptions to throw PSQLException rather than SQLException.
(So they'll use the errors.properties file instead of being hard
coded.)
I'll do these if people like the code I've submitted. The code should
function properly, and is fully commented in the relavent areas. The
DefaultProperties.java class I submited has also been updated; it
nolonger
throws exceptions due to read errors, and does not synchronize access to
itself. Please comment on my submittial, and if I'm going about my
updates
correctly. (And if you have improvements for my code. :-)
Thanks
=====
Virtually, | "Must you shout too?"
Ned Wolpert | -Dante
wolpert(at)yahoo(dot)com |
_________________/ "Who watches the watchmen?"
4e75 -Juvenal, 120 AD
-- Place your commercial here -- fnord
__________________________________________________
Do You Yahoo!?
Find a job, post your resume.
http://careers.yahoo.com
From: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
---|---|
To: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2001-12-03 17:05:29 |
Message-ID: | XFMail.20011203100529.ned.wolpert@knowledgenet.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Whoops. Sorry about that. I accidently resent my original message. (Didn't
mean to spam the list.)
I have a new update to my classes that I'll send in after 7.2 is released.
If you want, I can send in my new changes this week instead, though. My
changes include
1) Renamding psqlProps.properties to pgDriver.properties
2) Wrapping each statement so that the driver can catch their errors so
3) Connections are removed in case of error
4) Alittle better pooling
5) Moved exception names into the errors.properties file
So don't hold on to those classes I sent. Wait for my new ones.
Thanks.
On 03-Dec-2001 Bruce Momjian wrote:
>
> I will save this for 7.3:
>
> http://216.55.132.35/cgi-bin/pgpatches2
>
>
> ---------------------------------------------------------------------------
>
>> Folks-
>>
>> I finished an implementation of the ConnectionPoolDataSource that is
>> functional. I've included in this email the relavant code (tar, gziped):
>>
>> org/postgresql/PostgresqlConnectionPoolDataSource.java
>> org/postgresql/psqlProps.properties
>> org/postgresql/util/DefaultProperties.java
>> org/postgresql/jdbc2/PostgresqlPooledConnection.java
>>
>> (What is the normal way to send in new files for the driver? Is attachment
>> prefered?) They are also on my website at
>> http://members.home.net/wolpert5/code/
>> as well. The only additions left to make is
>>
>> 1) Cleaning thread to close unused connections
>> 2) Wrap objects returned by the connection so errors are caught on that
>> level too.
>> 3) Move all exceptions to throw PSQLException rather than SQLException.
>> (So they'll use the errors.properties file instead of being hard
>> coded.)
>>
>> I'll do these if people like the code I've submitted. The code should
>> function properly, and is fully commented in the relavent areas. The
>> DefaultProperties.java class I submited has also been updated; it nolonger
>>
>> throws exceptions due to read errors, and does not synchronize access to
>> itself. Please comment on my submittial, and if I'm going about my
>> updates
>> correctly. (And if you have improvements for my code. :-)
>>
>> Thanks
>>
>> =====
>> Virtually, | "Must you shout too?"
>> Ned Wolpert | -Dante
>> wolpert(at)yahoo(dot)com |
>> _________________/ "Who watches the watchmen?"
Virtually,
Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iD8DBQE8C7DYiysnOdCML0URAr2YAJ4+AwFVRIkTeO6u7OuSWwm1iF+BgQCdFV/H
chuZ31eZaSuqqyYiXRY0FgY=
=fvXX
-----END PGP SIGNATURE-----
From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2001-12-03 17:07:17 |
Message-ID: | 200112031707.fB3H7Hv21483@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
-- Start of PGP signed section.
> Whoops. Sorry about that. I accidently resent my original message. (Didn't
> mean to spam the list.)
>
> I have a new update to my classes that I'll send in after 7.2 is released.
> If you want, I can send in my new changes this week instead, though. My
> changes include
> 1) Renamding psqlProps.properties to pgDriver.properties
> 2) Wrapping each statement so that the driver can catch their errors so
> 3) Connections are removed in case of error
> 4) Alittle better pooling
> 5) Moved exception names into the errors.properties file
>
> So don't hold on to those classes I sent. Wait for my new ones.
>
> Thanks.
>
>
> On 03-Dec-2001 Bruce Momjian wrote:
> >
> > I will save this for 7.3:
> >
> > http://216.55.132.35/cgi-bin/pgpatches2
Done. I put this message in the queue too. I put them in so we know
they exist and don't forget about them.
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 19:53:43 |
Message-ID: | 200202221953.g1MJrhj12594@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Ned, can get get the newest versions for inclusion in 7.3?
---------------------------------------------------------------------------
Ned Wolpert wrote:
-- Start of PGP signed section.
> Whoops. Sorry about that. I accidently resent my original message. (Didn't
> mean to spam the list.)
>
> I have a new update to my classes that I'll send in after 7.2 is released.
> If you want, I can send in my new changes this week instead, though. My
> changes include
> 1) Renamding psqlProps.properties to pgDriver.properties
> 2) Wrapping each statement so that the driver can catch their errors so
> 3) Connections are removed in case of error
> 4) Alittle better pooling
> 5) Moved exception names into the errors.properties file
>
> So don't hold on to those classes I sent. Wait for my new ones.
>
> Thanks.
>
>
> On 03-Dec-2001 Bruce Momjian wrote:
> >
> > I will save this for 7.3:
> >
> > http://216.55.132.35/cgi-bin/pgpatches2
> >
> >
> > ---------------------------------------------------------------------------
> >
> >> Folks-
> >>
> >> I finished an implementation of the ConnectionPoolDataSource that is
> >> functional. I've included in this email the relavant code (tar, gziped):
> >>
> >> org/postgresql/PostgresqlConnectionPoolDataSource.java
> >> org/postgresql/psqlProps.properties
> >> org/postgresql/util/DefaultProperties.java
> >> org/postgresql/jdbc2/PostgresqlPooledConnection.java
> >>
> >> (What is the normal way to send in new files for the driver? Is attachment
> >> prefered?) They are also on my website at
> >> http://members.home.net/wolpert5/code/
> >> as well. The only additions left to make is
> >>
> >> 1) Cleaning thread to close unused connections
> >> 2) Wrap objects returned by the connection so errors are caught on that
> >> level too.
> >> 3) Move all exceptions to throw PSQLException rather than SQLException.
> >> (So they'll use the errors.properties file instead of being hard
> >> coded.)
> >>
> >> I'll do these if people like the code I've submitted. The code should
> >> function properly, and is fully commented in the relavent areas. The
> >> DefaultProperties.java class I submited has also been updated; it nolonger
> >>
> >> throws exceptions due to read errors, and does not synchronize access to
> >> itself. Please comment on my submittial, and if I'm going about my
> >> updates
> >> correctly. (And if you have improvements for my code. :-)
> >>
> >> Thanks
> >>
> >> =====
> >> Virtually, | "Must you shout too?"
> >> Ned Wolpert | -Dante
> >> wolpert(at)yahoo(dot)com |
> >> _________________/ "Who watches the watchmen?"
>
>
> Virtually,
> Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
>
> D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45 -- End of PGP signed section.
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
---|---|
To: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 19:55:57 |
Message-ID: | 1014407757.27810.29.camel@osti.knowledgenet.corp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Bruce-
Sure. I have to do it this weekend. Note that this contains changes
to the DefaultProperties.java patch that you have planned to go into
7.3, so you might want to hold off on doing that one until I get you the
new code.
On Fri, 2002-02-22 at 12:53, Bruce Momjian wrote:
>
> Ned, can get get the newest versions for inclusion in 7.3?
>
> ---------------------------------------------------------------------------
>
> Ned Wolpert wrote:
> -- Start of PGP signed section.
> > Whoops. Sorry about that. I accidently resent my original message. (Didn't
> > mean to spam the list.)
> >
> > I have a new update to my classes that I'll send in after 7.2 is released.
> > If you want, I can send in my new changes this week instead, though. My
> > changes include
> > 1) Renamding psqlProps.properties to pgDriver.properties
> > 2) Wrapping each statement so that the driver can catch their errors so
> > 3) Connections are removed in case of error
> > 4) Alittle better pooling
> > 5) Moved exception names into the errors.properties file
> >
> > So don't hold on to those classes I sent. Wait for my new ones.
> >
> > Thanks.
> >
> >
> > On 03-Dec-2001 Bruce Momjian wrote:
> > >
> > > I will save this for 7.3:
> > >
> > > http://216.55.132.35/cgi-bin/pgpatches2
> > >
> > >
> > > ---------------------------------------------------------------------------
> > >
> > >> Folks-
> > >>
> > >> I finished an implementation of the ConnectionPoolDataSource that is
> > >> functional. I've included in this email the relavant code (tar, gziped):
> > >>
> > >> org/postgresql/PostgresqlConnectionPoolDataSource.java
> > >> org/postgresql/psqlProps.properties
> > >> org/postgresql/util/DefaultProperties.java
> > >> org/postgresql/jdbc2/PostgresqlPooledConnection.java
> > >>
> > >> (What is the normal way to send in new files for the driver? Is attachment
> > >> prefered?) They are also on my website at
> > >> http://members.home.net/wolpert5/code/
> > >> as well. The only additions left to make is
> > >>
> > >> 1) Cleaning thread to close unused connections
> > >> 2) Wrap objects returned by the connection so errors are caught on that
> > >> level too.
> > >> 3) Move all exceptions to throw PSQLException rather than SQLException.
> > >> (So they'll use the errors.properties file instead of being hard
> > >> coded.)
> > >>
> > >> I'll do these if people like the code I've submitted. The code should
> > >> function properly, and is fully commented in the relavent areas. The
> > >> DefaultProperties.java class I submited has also been updated; it nolonger
> > >>
> > >> throws exceptions due to read errors, and does not synchronize access to
> > >> itself. Please comment on my submittial, and if I'm going about my
> > >> updates
> > >> correctly. (And if you have improvements for my code. :-)
> > >>
> > >> Thanks
> > >>
> > >> =====
> > >> Virtually, | "Must you shout too?"
> > >> Ned Wolpert | -Dante
> > >> wolpert(at)yahoo(dot)com |
> > >> _________________/ "Who watches the watchmen?"
> >
> >
> > Virtually,
> > Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
> >
> > D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45 -- End of PGP signed section.
>
> --
> Bruce Momjian | http://candle.pha.pa.us
> pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
> + If your life is a hard drive, | 830 Blythe Avenue
> + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
--
Virtually,
Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45
From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 19:57:51 |
Message-ID: | 200202221957.g1MJvpu13241@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Ned Wolpert wrote:
Checking application/pgp-signature: FAILURE
-- Start of PGP signed section.
> Bruce-
>
> Sure. I have to do it this weekend. Note that this contains changes
> to the DefaultProperties.java patch that you have planned to go into
> 7.3, so you might want to hold off on doing that one until I get you the
> new code.
OK, let me know how you want it handled. If a jdbc maintainer will tell
me, I can get your DefaultProperties.java in right away or wait and
discard it.
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
---|---|
To: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 20:05:57 |
Message-ID: | 1014408358.27810.34.camel@osti.knowledgenet.corp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Currently, no one is using DefaultProperties as of yet... I'll be the
first. The pooled connection uses it mostly.
The only thing in DefaultProperties that I changed was the name of the
property file to be used... I stopped using psqlProps.properties and
changed it to pgsqlDriver.properties instead. But I figure its easier
to check in the 6 files I've got in one push.
On Fri, 2002-02-22 at 12:57, Bruce Momjian wrote:
> Ned Wolpert wrote:
>
> Checking application/pgp-signature: FAILURE
> -- Start of PGP signed section.
> > Bruce-
> >
> > Sure. I have to do it this weekend. Note that this contains changes
> > to the DefaultProperties.java patch that you have planned to go into
> > 7.3, so you might want to hold off on doing that one until I get you the
> > new code.
>
> OK, let me know how you want it handled. If a jdbc maintainer will tell
> me, I can get your DefaultProperties.java in right away or wait and
> discard it.
>
> --
> Bruce Momjian | http://candle.pha.pa.us
> pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
> + If your life is a hard drive, | 830 Blythe Avenue
> + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
--
Virtually,
Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45
From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
Cc: | psql-jdbc <pgsql-jdbc(at)postgresql(dot)org>, Barry Lind <barry(at)xythos(dot)com>, Ned Wolpert <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 20:09:43 |
Message-ID: | 200202222009.g1MK9ib14853@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
OK, original DefaultProperties patch deleted.
---------------------------------------------------------------------------
Ned Wolpert wrote:
Checking application/pgp-signature: FAILURE
-- Start of PGP signed section.
> Currently, no one is using DefaultProperties as of yet... I'll be the
> first. The pooled connection uses it mostly.
>
> The only thing in DefaultProperties that I changed was the name of the
> property file to be used... I stopped using psqlProps.properties and
> changed it to pgsqlDriver.properties instead. But I figure its easier
> to check in the 6 files I've got in one push.
>
> On Fri, 2002-02-22 at 12:57, Bruce Momjian wrote:
> > Ned Wolpert wrote:
> >
> > Checking application/pgp-signature: FAILURE
> > -- Start of PGP signed section.
> > > Bruce-
> > >
> > > Sure. I have to do it this weekend. Note that this contains changes
> > > to the DefaultProperties.java patch that you have planned to go into
> > > 7.3, so you might want to hold off on doing that one until I get you the
> > > new code.
> >
> > OK, let me know how you want it handled. If a jdbc maintainer will tell
> > me, I can get your DefaultProperties.java in right away or wait and
> > discard it.
> >
> > --
> > Bruce Momjian | http://candle.pha.pa.us
> > pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
> > + If your life is a hard drive, | 830 Blythe Avenue
> > + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
> --
>
> Virtually,
> Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
>
> D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45
-- End of PGP section, PGP failed!
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From: | "Dave Cramer" <Dave(at)micro-automation(dot)net> |
---|---|
To: | "'Bruce Momjian'" <pgman(at)candle(dot)pha(dot)pa(dot)us>, "'Ned Wolpert'" <ned(dot)wolpert(at)knowledgenet(dot)com> |
Cc: | "'psql-jdbc'" <pgsql-jdbc(at)postgresql(dot)org>, "'Barry Lind'" <barry(at)xythos(dot)com>, "'Ned Wolpert'" <wolpert(at)yahoo(dot)com> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 20:13:34 |
Message-ID: | 009a01c1bbdd8f0fc001a8c0@inspiron |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Bruce,
Not much sense putting it in now if Ned is going to change it.
Dave
-----Original Message-----
From: pgsql-jdbc-owner(at)postgresql(dot)org
[mailto:pgsql-jdbc-owner(at)postgresql(dot)org] On Behalf Of Bruce Momjian
Sent: Friday, February 22, 2002 2:58 PM
To: Ned Wolpert
Cc: psql-jdbc; Barry Lind; Ned Wolpert
Subject: Re: [JDBC] ConnectionPoolDataSource submittal
Ned Wolpert wrote:
Checking application/pgp-signature: FAILURE
-- Start of PGP signed section.
> Bruce-
>
> Sure. I have to do it this weekend. Note that this contains
> changes to the DefaultProperties.java patch that you have planned to
> go into 7.3, so you might want to hold off on doing that one until I
> get you the new code.
OK, let me know how you want it handled. If a jdbc maintainer will tell
me, I can get your DefaultProperties.java in right away or wait and
discard it.
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania
19026
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
From: | Sean Alphonse <salphonse(at)shaw(dot)ca> |
---|---|
To: | pgsql-jdbc <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-22 23:15:47 |
Message-ID: | 002701c1bbf6$dc4b0ee001a8c0@spock |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
Is there an estimated time when the connection pool driver will be released?
Thanks.
Sean
----- Original Message -----
From: "Dave Cramer" <Dave(at)micro-automation(dot)net>
To: "'Bruce Momjian'" <pgman(at)candle(dot)pha(dot)pa(dot)us>; "'Ned Wolpert'"
<ned(dot)wolpert(at)knowledgenet(dot)com>
Cc: "'psql-jdbc'" <pgsql-jdbc(at)postgresql(dot)org>; "'Barry Lind'"
<barry(at)xythos(dot)com>; "'Ned Wolpert'" <wolpert(at)yahoo(dot)com>
Sent: Friday, February 22, 2002 2:13 PM
Subject: Re: [JDBC] ConnectionPoolDataSource submittal
> Bruce,
>
> Not much sense putting it in now if Ned is going to change it.
>
> Dave
>
> -----Original Message-----
> From: pgsql-jdbc-owner(at)postgresql(dot)org
> [mailto:pgsql-jdbc-owner(at)postgresql(dot)org] On Behalf Of Bruce Momjian
> Sent: Friday, February 22, 2002 2:58 PM
> To: Ned Wolpert
> Cc: psql-jdbc; Barry Lind; Ned Wolpert
> Subject: Re: [JDBC] ConnectionPoolDataSource submittal
>
>
> Ned Wolpert wrote:
>
> Checking application/pgp-signature: FAILURE
> -- Start of PGP signed section.
> > Bruce-
> >
> > Sure. I have to do it this weekend. Note that this contains
> > changes to the DefaultProperties.java patch that you have planned to
> > go into 7.3, so you might want to hold off on doing that one until I
> > get you the new code.
>
> OK, let me know how you want it handled. If a jdbc maintainer will tell
> me, I can get your DefaultProperties.java in right away or wait and
> discard it.
>
> --
> Bruce Momjian | http://candle.pha.pa.us
> pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
> + If your life is a hard drive, | 830 Blythe Avenue
> + Christ can be your backup. | Drexel Hill, Pennsylvania
> 19026
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
From: | Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com> |
---|---|
To: | Sean Alphonse <salphonse(at)shaw(dot)ca> |
Cc: | pgsql-jdbc <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | Re: ConnectionPoolDataSource submittal |
Date: | 2002-02-25 16:47:37 |
Message-ID: | 1014655657.22980.1.camel@osti.knowledgenet.corp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-jdbc |
It won't be 'released' until 7.3. Its a new feature, not a bug-fix.
But it will be in CVS soon. (I didn't get a chance to finish it
yesterday, so I'm going to try tonight.)
On Fri, 2002-02-22 at 16:15, Sean Alphonse wrote:
> Is there an estimated time when the connection pool driver will be released?
>
> Thanks.
>
> Sean
> ----- Original Message -----
> From: "Dave Cramer" <Dave(at)micro-automation(dot)net>
> To: "'Bruce Momjian'" <pgman(at)candle(dot)pha(dot)pa(dot)us>; "'Ned Wolpert'"
> <ned(dot)wolpert(at)knowledgenet(dot)com>
> Cc: "'psql-jdbc'" <pgsql-jdbc(at)postgresql(dot)org>; "'Barry Lind'"
> <barry(at)xythos(dot)com>; "'Ned Wolpert'" <wolpert(at)yahoo(dot)com>
> Sent: Friday, February 22, 2002 2:13 PM
> Subject: Re: [JDBC] ConnectionPoolDataSource submittal
>
>
> > Bruce,
> >
> > Not much sense putting it in now if Ned is going to change it.
> >
> > Dave
> >
> > -----Original Message-----
> > From: pgsql-jdbc-owner(at)postgresql(dot)org
> > [mailto:pgsql-jdbc-owner(at)postgresql(dot)org] On Behalf Of Bruce Momjian
> > Sent: Friday, February 22, 2002 2:58 PM
> > To: Ned Wolpert
> > Cc: psql-jdbc; Barry Lind; Ned Wolpert
> > Subject: Re: [JDBC] ConnectionPoolDataSource submittal
> >
> >
> > Ned Wolpert wrote:
> >
> > Checking application/pgp-signature: FAILURE
> > -- Start of PGP signed section.
> > > Bruce-
> > >
> > > Sure. I have to do it this weekend. Note that this contains
> > > changes to the DefaultProperties.java patch that you have planned to
> > > go into 7.3, so you might want to hold off on doing that one until I
> > > get you the new code.
> >
> > OK, let me know how you want it handled. If a jdbc maintainer will tell
> > me, I can get your DefaultProperties.java in right away or wait and
> > discard it.
> >
> > --
> > Bruce Momjian | http://candle.pha.pa.us
> > pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
> > + If your life is a hard drive, | 830 Blythe Avenue
> > + Christ can be your backup. | Drexel Hill, Pennsylvania
> > 19026
> >
> > ---------------------------(end of broadcast)---------------------------
> > TIP 4: Don't 'kill -9' the postmaster
> >
> >
> >
> > ---------------------------(end of broadcast)---------------------------
> > TIP 4: Don't 'kill -9' the postmaster
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
--
Virtually,
Ned Wolpert <ned(dot)wolpert(at)knowledgenet(dot)com>
D08C2F45: 28E7 56CB 58AC C622 5A51 3C42 8B2B 2739 D08C 2F45