>> Hi all,
>>
>> I've a question to guru :)
>> there're two tables:
>> mysql> show fields from domains;
>> ++--+--+-+-+
>> | Field | Type | Null | Key | Default | Extra
>> ++--+--+-+-+
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)
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: