vote up 3 vote down star
1

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)

flag

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

2 Answers

vote up 2 vote down check

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

link|flag
Thanks, will have a look. I was thinking more process than a software solution. – TreeUK Feb 20 at 15:02
Any way to see the values of temp tables while debugging? – torial Nov 14 at 3:54
vote up 2 vote down

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|flag
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 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 at 15:16

Your Answer

Get an OpenID
or

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