Unix Technical Forum

development environment of postgres

This is a discussion on development environment of postgres within the pgsql Hackers forums, part of the PostgreSQL category; --> Hi, I want to ask, which development environment should I use to add new features to postgresql. Is Eclipse ...


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Hackers

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-12-2008, 06:00 AM
dakotali kasap
 
Posts: n/a
Default development environment of postgres

Hi,

I want to ask, which development environment should I use to add new features to postgresql. Is Eclipse CDT (C/C++ Development Tool) suitablefor this, or are you using another environment, or just using pico, vi, etc.?

Regards,





__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spamprotection around
http://mail.yahoo.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-12-2008, 06:00 AM
Joshua D. Drake
 
Posts: n/a
Default Re: development environment of postgres

On Sat, 2006-12-16 at 16:47 -0800, dakotali kasap wrote:
> Hi,
>
> I want to ask, which development environment should I use to add new
> features to postgresql. Is Eclipse CDT (C/C++ Development Tool)
> suitable for this, or are you using another environment, or just using
> pico, vi, etc.?


Use the environment that works for you. Some people like emacs, some
kdevelop, some Eclipse, some VC++. Just use what you are good at.

Sincerely,

Joshua D. Drake

>
> Regards,
>
>
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com

--

=== The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240
Providing the most comprehensive PostgreSQL solutions since 1997
http://www.commandprompt.com/

Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate




---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-12-2008, 06:00 AM
Jonah H. Harris
 
Posts: n/a
Default Re: development environment of postgres

On 12/16/06, dakotali kasap <dakotalidavid@yahoo.com> wrote:
> I want to ask, which development environment should I use to add new
> features to postgresql. Is Eclipse CDT (C/C++ Development Tool) suitable for
> this, or are you using another environment, or just using pico, vi, etc.?


My development environment primarily consists of gentoo, vim, gdb,
gprof, valgrind, and gcc 4.1.1. Eclipse is nice for Java, but I don't
really prefer it for C/C++ work.

In the end, you should really use what you're most comfortable with.

--
Jonah H. Harris, Software Architect | phone: 732.331.1324
EnterpriseDB Corporation | fax: 732.331.1301
33 Wood Ave S, 3rd Floor | jharris@enterprisedb.com
Iselin, New Jersey 08830 | http://www.enterprisedb.com/

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-12-2008, 06:00 AM
Chris Browne
 
Posts: n/a
Default Re: development environment of postgres

dakotalidavid@yahoo.com (dakotali kasap) writes:
> I want to ask, which development environment should I use to add new
> features to postgresql. Is Eclipse CDT (C/C++ Development Tool)
> suitable for this, or are you using another environment, or just
> using pico, vi, etc.?


I can't speak for you. I find my competence is maximized when I'm
using Emacs; others find other sets of tools preferable. The code
doesn't care what tool you're best with.

- There are people who will swear by vi + ctags.

- There are some who still use QED. (Albeit not for this project...)
<http://cm.bell-labs.com/cm/cs/who/dmr/qed.html>
(These would be extreme Unix partisans who think that the move from
ed to vi was a Bad Thing... :-))

- Others prefer some form of Emacs.

- One of my coworkers I think uses pico for most things; he's not keen
on either of the typical Unix editors.

As a quite wide-ranging rule, a worker who blames his tools for things
not working tends to be *spectacularly* incompetent. If you pick
tools you're not highly familiar with, you'll be liable to fall into
that sort of problem :-(. Pick an editor you are intimately familiar
with, and you'll be as well off as you can be. Your errors will be
your own :-).
--
let name="cbbrowne" and tld="cbbrowne.com" in String.concat "@" [name;tld];;
http://cbbrowne.com/info/sap.html
`I am convinced that interactive systems will never displace batch
systems for many applications.' - Brooks, _The Mythical Man-Month_
(And this does indeed seem true. MVS/CICS systems have *NOT* gone
away...)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-12-2008, 06:00 AM
Andrew Dunstan
 
Posts: n/a
Default Re: development environment of postgres

Chris Browne wrote:
> dakotalidavid@yahoo.com (dakotali kasap) writes:
>> I want to ask, which development environment should I use to add new
>> features to postgresql. Is Eclipse CDT (C/C++ Development Tool)
>> suitable for this, or are you using another environment, or just
>> using pico, vi, etc.?

>
> I can't speak for you. I find my competence is maximized when I'm
> using Emacs; others find other sets of tools preferable. The code
> doesn't care what tool you're best with.
>
> - There are people who will swear by vi + ctags.
>
> - There are some who still use QED. (Albeit not for this project...)
> <http://cm.bell-labs.com/cm/cs/who/dmr/qed.html>
> (These would be extreme Unix partisans who think that the move from
> ed to vi was a Bad Thing... :-))
>
> - Others prefer some form of Emacs.
>
> - One of my coworkers I think uses pico for most things; he's not keen
> on either of the typical Unix editors.
>


Higher end IDEs tend to work best with some sort of project setup. If we
were to support that it would be impossible - we'd forever have breakage.
We support exactly the toolset needed to build postgres, and let you
choose your own creation and management tools.

There are plenty of emacs users among the hackers, and it's possible to
set up emacs to drive building, debugging, the whole thing. For the most
part I just use its editing facities, and drive everything else from the
command line.

cheers

andrew


---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 11:01 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com