Re: C API for mysql

2003-02-10 Thread Paul DuBois
At 14:21 + 2/7/03, Qin Lu wrote: Hello, I'd like to practice my C application for using mysql. Do you know where can I find some examples? Look in the client directory of a MySQL source distribution. Many/most of the standard MySQL clients are written in C. You can also get examples at t

C API for mysql

2003-02-08 Thread Qin Lu
Hello, I'd like to practice my C application for using mysql. Do you know where can I find some examples? Which header files should I include in my code? And which lib.a should I link to? Many Thanks. Qin This E-Mail and any attachment is intended only for the person or entity for which it i

Re: Problem using the C-API for MySQL Program breakdown after about1 Mio SQL-statements

2003-01-15 Thread Daniel Wetzler
From: "Daniel Wetzler" <[EMAIL PROTECTED]> To: "MySQL Mailing Liste" <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 11:54 AM Subject: Problem using the C-API for MySQL Program breakdown after about 1 Mio SQL-statements Hallo, I apologize for my bad engli

Re: Problem using the C-API for MySQL Program breakdown after about 1 Mio SQL-statements

2003-01-15 Thread Gelu Gogancea
ECTED] [EMAIL PROTECTED] - Original Message - From: "Daniel Wetzler" <[EMAIL PROTECTED]> To: "MySQL Mailing Liste" <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 11:54 AM Subject: Problem using the C-API for MySQL Program breakdown after

Problem using the C-API for MySQL Program breakdown after about 1Mio SQL-statements

2003-01-15 Thread Daniel Wetzler
Hallo, I apologize for my bad english. Im desperate about the followwing problem : I'm using the MySQL C-API for accesssing a database with about 1.2 Mio SQL-Statemants. Therefor I make a connect to the database and after that a loop starts a Subprogram about 1.2 Mio times in which a SQL-statemen

Re: C++ API for Mysql

2002-05-06 Thread Hisseine Dj.
TECTED]>; <[EMAIL PROTECTED]> Sent: Monday, May 06, 2002 11:31 AM Subject: SV: C++ API for Mysql > You can download MySQL++ from www.mysql.com > > - Carsten > > > -Oprindelig meddelelse- > > Fra: Hisseine Dj. [mailto:[EMAIL PROTECTED]] > > Sendt:

SV: C++ API for Mysql

2002-05-06 Thread Carsten Gehling
You can download MySQL++ from www.mysql.com - Carsten > -Oprindelig meddelelse- > Fra: Hisseine Dj. [mailto:[EMAIL PROTECTED]] > Sendt: 6. maj 2002 17:24 > Til: [EMAIL PROTECTED] > Emne: C++ API for Mysql > > > Hello, > > Can someone tell me if there is an

C++ API for Mysql

2002-05-06 Thread Hisseine Dj.
Hello, Can someone tell me if there is an C++ API that works smooth with MYSQL on linux. So far I was trying msql++ and SQLAPI++. SQLAPI++ seems to be good by there are problems when runing the program. My system is Redhat 7.2 and Mysql 3.23.49 Thanks, Hisseine -

C++ API for Mysql

2002-05-06 Thread Hisseine Dj.
Hello, Can someone tell me if there is an C++ API that works smooth with MYSQL on linux. So far I was trying msql++ and SQLAPI++. SQLAPI++ seems to be good by there are problems when runing the program. My system is Redhat 7.2 and Mysql 3.23.49 Thanks, Hisseine --

Re: newbie : Help with C api for mysql

2002-03-18 Thread Sammy Lau
jim and lois flaherty wrote: > gcc analysis.c > > analysis.c:6:19: warning: extra tokens at end of #include directive > analysis.c:7:19: warning: extra tokens at end of #include directive > /tmp/ccsKk2GG.o: In function `main': > /tmp/ccsKk2GG.o(.text+0x14): undefined reference to `mysql_init' >

newbie : Help with C api for mysql

2002-03-18 Thread jim and lois flaherty
I have a Redhat 7.1 box, I want it to connect to its own mysql db . Here is my code #include ; #include ; int main(char **args){ MYSQL_RES *result; MYSQL_ROW row; MYSQL *connection, mysql; int state; /* connect to the mysql db */ mysql_init(&mysql); connection = mysq

C API for mysql : could not find compress : examples foc compiling and linking

2001-05-26 Thread Didier Brisebourg
Hi, I'm working on my first program witk mysql c api. I meet problem to link c program that use it. One symbol "compress" cannot be resolved. Has anybody a sample script that compile and link ? What are the options to compile and link ? Thanks a lot. Bye