RE: increment and update in one query

2005-08-03 Thread Christian Lee
>> Hi all, >> >> I've a question to guru :) >> there're two tables: >> mysql> show fields from domains; >> ++--+--+-+-+ >> | Field | Type | Null | Key | Default | Extra >> ++--+--+-+-+

increment and update in one query

2005-08-03 Thread Christian Lee
Hi all, I've a question to guru :) there're two tables: mysql> show fields from domains; ++--+--+-+-+ | Field | Type | Null | Key | Default | Extra ++--+--+-+-+ | id | int(10)

mysql and c

2005-07-31 Thread Christian Lee
Hi all, is it possible to send from server to client a handle to MySQL connection. for example then i'm trying: server: Code: ... MYSQL mysql; mysql_init(&mysql); mysql_real_connect(&mysql,); ... send(socket,&mysql, sizeof(MYSQL),0); - client: Code: