From: Thomas R. Bedell Date: March 21 1999 7:02pm Subject: Compiler Trouble. List-Archive: http://lists.mysql.com/mysql/728 Message-Id: <01BE73A3.75A28040@FILESERVER> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hello All, This is probably pretty dumb but... Does anybody see a problem with the following code???? /* Establish Connection to MySQL Server */ #include "mysql.h" #include #include MYSQL mysql; main() { mysql_init(&mysql); /* my prog here */ return 0; } When I try to comple I get... [trbedell@oscar c]# gcc -o connect mysql.c /tmp/cca034371.o: In function `main': /tmp/cca034371.o(.text+0x9): undefined reference to `mysql_init' [trbedell@oscar c]# USING: Redhat 5.1, MySQL 3_22_20a, (I have installed Bench, Client and Devel packages also) and glibc-2_0_7-19. Thank you in advance. Tom Bedell