Hello,
I'm using the librouting dll from the win32 pgRouting package (postgres 8.3, postgis 1.3.3, windows XP).
Here are the steps to reproduce my problem on pgAdmin III :
1. install the 3 dll librouting (see attached files) (I put them in the
folder postgreSQL\8.3\lib)
2. execute the file dijkstra.sql to create the function shortest_path
3. Restore the database "routingtest" (see attached files)
4. execute the query :
SELECT a.edge_id
FROM shortest_path('SELECT id, source, target, cost FROM
roads_europe_edges', 1, 3, false, false)
AS a
LEFT JOIN roads_europe ON vertex_id = gid ;
the server connexion closed unexpectedly instead of giving me any answer from my query...