PostgreSQL - pgdac error

Discussion of open issues, suggestions and bugs regarding PgDAC (PostgreSQL Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Lacmane
Posts: 5
Joined: Thu 30 Aug 2012 08:47

PostgreSQL - pgdac error

Post by Lacmane » Thu 30 Aug 2012 08:54

Hi,

I am working with Borland/Embarcadero C++ builder 2007, and i downloaded pgdac and installed it.
But when i build my project it gives me an error.
I think the problem has to do with pgDac that i downloaded and installed.
I downloaded it from, http://www.devart.com/pgdac/download.html ( its the 'PgDAC 3.2 for Delphi, C++Builder, and RAD Studio 2007' ).

Error:
[Linker Error] Unresolved external 'WSAIoctl' referenced from C:\PROGRAM
FILES (X86)\CODEGEAR\RAD STUDIO\5.0\LIB\DAC105.LIB|CRVioTcp

Can you help me?

Thanks!
Leandro Lacmane

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: PostgreSQL - pgdac error

Post by AlexP » Thu 30 Aug 2012 09:43

Hello,

Thank you for the information.
We've already fixed problem.
This fix will be included in the next build.

For the time being, to resolve this problem, you should include the ws2_32.lib library into your project

Code: Select all

#include "ws2_32.lib";

Post Reply