'1_Dev/Delphi'에 해당되는 글 2건

  1. 2017.06.21 FireDac 을 사용하여 Oracle 연결 하려면..
  2. 2017.06.16 WinSock 설치
1_Dev/Delphi2017. 6. 21. 12:15

오라클 연결에 필요한 필수 라이브러리가 개발환경부터 배포까지 필요하다.


참고자료 원문 : https://goo.gl/NepY1R




1. http://www.oracle.com/technetwork/indexes/downloads/index.html 에서 

  "instant client"를 다운로드




2. 압축된 파일 풀어낸 후 

  • oci.dll
  • oraocci11.dll
  • oraociei11.dll
  • orasql11.dll

위 4종류의 파일을 찾아, 제작하는 중인 실행 프로그램과 같은 위치에 두거나, Path 경로에 둔다.
권장 사항으로는 Path에 RadStudio 의 bin 폴더가 잡혀 있으므로, bin에 두길 권한다.


Posted by minoo.lim
1_Dev/Delphi2017. 6. 16. 10:03

델파이에서는 winsock 컴포넌트를 기본으로 제공해 주지 않는다.

개인이 직접 설치해야 하는데, 엠바카데로 docs에서 설치법을 알려준다.


원문 : https://goo.gl/THjSs4



To install the socket components:

  1. Select Component > Install Packages.
  2. In the Install Packages dialog box, click Add.
  3. In the Add Design Package dialog, browse to C:\Program Files (x86)\Embarcadero\Studio\15.0\bin.
  4. Select dclsockets<nnn>.bpl, and click Open.
  5. Click OK to dismiss Install Packages dialog.
  6. The socket components (TClientSocket and TServerSocket) are listed in the Internet category of the Toot Palette.




Posted by minoo.lim