Thread: eclipse update source?

eclipse update source?

From
Magosányi Árpád
Date:
Hi!

I cannot find an eclipse update source for postgresql jdbc. Where is
it/what is the way to satisfy the dependency for 'package org.postgresql
[8.3.0,9.0.0)' ?
Downloading the jdbc driver and putting it to the ecliipse plugins
directory does not seems to work...
Thank you.


solved: eclipse update source?

From
Magosányi Árpád
Date:
http://net4j.sourceforge.net/update/
On 2011-11-27 12:19, Magosányi Árpád wrote:
> Hi!
>
> I cannot find an eclipse update source for postgresql jdbc. Where is
> it/what is the way to satisfy the dependency for 'package
> org.postgresql [8.3.0,9.0.0)' ?
> Downloading the jdbc driver and putting it to the ecliipse plugins
> directory does not seems to work...
> Thank you.
>
>



Re: solved: eclipse update source?

From
Thomas Kellerer
Date:
Magosányi Árpád wrote on 27.11.2011 12:36:
> http://net4j.sourceforge.net/update/
> On 2011-11-27 12:19, Magosányi Árpád wrote:
>> Hi!
>>
>> I cannot find an eclipse update source for postgresql jdbc. Where is it/what is the way to satisfy the dependency
for'package org.postgresql [8.3.0,9.0.0)' ? 
>> Downloading the jdbc driver and putting it to the ecliipse plugins directory does not seems to work...
>> Thank you.
>>

The official drivers can be downloaded from here:

http://jdbc.postgresql.org



Re: solved: eclipse update source?

From
Magosányi Árpád
Date:
On 2011-11-27 13:18, Thomas Kellerer wrote:
> Magosányi Árpád wrote on 27.11.2011 12:36:
>> http://net4j.sourceforge.net/update/
>> On 2011-11-27 12:19, Magosányi Árpád wrote:
>>> Hi!
>>>
>>> I cannot find an eclipse update source for postgresql jdbc. Where is
>>> it/what is the way to satisfy the dependency for 'package
>>> org.postgresql [8.3.0,9.0.0)' ?
>>> Downloading the jdbc driver and putting it to the ecliipse plugins
>>> directory does not seems to work...
>>> Thank you.
>>>
>
> The official drivers can be downloaded from here:
>
> http://jdbc.postgresql.org
>

My eclipse said:
"""
No repository found at http://jdbc.postgresql.org/.
"""


Re: solved: eclipse update source?

From
Thomas Kellerer
Date:
Magosányi Árpád wrote on 27.11.2011 14:31:
>
>>>> I cannot find an eclipse update source for postgresql jdbc. Where is it/what is the way to satisfy the dependency
for'package org.postgresql [8.3.0,9.0.0)' ? 
>>>> Downloading the jdbc driver and putting it to the ecliipse plugins directory does not seems to work...
>>>> Thank you.
>>>>
>>
>> The official drivers can be downloaded from here:
>>
>> http://jdbc.postgresql.org
>>
>
> My eclipse said:
> """
> No repository found at http://jdbc.postgresql.org/.
> """
>
>
I have no idea what that eclipse repository is (I don't use Eclipse), but what keeps you from simply downloading the
currentdriver from there and add it to the classpath? 



Re: eclipse update source?

From
"Kevin Grittner"
Date:
Magosányi Árpád wrote:

> I cannot find an eclipse update source for postgresql jdbc. Where
> is it/what is the way to satisfy the dependency for 'package
> org.postgresql [8.3.0,9.0.0)' ?
> Downloading the jdbc driver and putting it to the ecliipse plugins
> directory does not seems to work...

I wasn't aware that anyone had packaged the PostgreSQL JDBC driver as
an eclipse plugin.  Have you been using such a package?  If so, where
did you get it?  If not, download the jar file as others have
suggested, and put it on your runtime classpath.  If you are using
any of the classes directly, rather than going through the standard
interface, you will also need to add the jar to you build path.

-Kevin