up vote 3 down vote favorite
2
share [g+] share [fb]

I'm using pgAdmin III 1.8.4 and finding it a harsh mistress.

When writing stored procedures (functions), there's no query compilation. So I have no idea if my function will work until I call it.

How do other people work around this deficiency? (Other than getting it right first time :p)

link|improve this question

You might try changing the title to be more clear that you're trying to debug stored procedures – Akrikos Feb 20 '09 at 19:56
feedback

2 Answers

up vote 2 down vote accepted

EnterpriceDB includes PL/PGSQL Debugger which you can use to step through the code.

link|improve this answer
Thanks, will have a look. I was thinking more process than a software solution. – TreeUK Feb 20 '09 at 15:02
Any way to see the values of temp tables while debugging? – torial Nov 14 '09 at 3:54
feedback

Write a unit test for it. Granted this won't give you debugging capability, but you should ideally have a unit test suite (and an integration test suite) that you run against your code that proves that it works... and that lets you know when something breaks.

link|improve this answer
Fair point, but waiting until the data access code is up and running before knowing if the pgsql is even valid is more the issue here. – TreeUK Feb 20 '09 at 14:56
My thinking was along the lines of Test Driven Development & how loosely typed language writers deal with making sure stuff works. Since most errors won't show up until run-time, they write a test suite to exercise their code. – Akrikos Feb 20 '09 at 15:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.