Home

Installing the debugger for pgAdmin on Windows

Published on 1/28/2014


Software used:

Steps:

  1. Open c:\program files\postgresql\9.3\data\postgresql.conf

  2. Un-comment or add this line:

shared_preload_libraries = '$libdir/plugin_debugger.dll'

  1. Restart PostgreSQL server

  2. In the database you want to debug, run create extension pldbgapi;

  3. Restart pgAdmin III

  4. In pgAdmin III, you should now have a Debugging option on context menus for user-defined functions/procedures. You can’t debug PL/SQL or PL/V8 language functions, only PL/pgSQL with this debugger.

... views