I guess this is a simple question. Look this piece of code:
mysql_query(connection, "SELECT `id`, `password`, `group_id` FROM `accounts` LIMIT " << in << ";");
the second parameter is a char*, and in is an int. I just need to include in inside the second parameter correctly. I tried many times and didn't worked. How do I do this?