http://database.sarang.net/database/freetds/freetds-4.html
위의 주소에 있는 내용을 그대로 복사해서
컴파일 할려고 하니 에러가 났습니다.
$ gcc -o freetest free.c -I/usr/local/freetds/include -L/usr/local/freetds/lib -lsybdb
/tmp/ccKKvEro.o: In function `main':
/tmp/ccKKvEro.o(.text+0x7f): undefined reference to `dbopen'
collect2: ld returned 1 exit status
그래서
56라인을 아래와 같이 수정했습니다.
dbproc = (DBPROCESS *)tdsdbopen(login, "myserver");
그랬더니 컴파일은 정상적으로 잘 됐는데...
실행하니까
$ ./freetest
Segmentation fault (core dumped)
위와 같은 에러가 발생하는 군요....
이유가 뭘까요??
아시는 분 꼭 좀 답변 부탁드립니다.
참고로
gcc -o freetest free.c -I/usr/local/freetds/include -L/usr/local/freetds/lib -lsybdb
이렇게 컴파일 했습니다.
부탁드립니다. 도와 주세요
|