Skip to content

Instantly share code, notes, and snippets.

@omo
Created September 19, 2008 15:08
Show Gist options
  • Save omo/11604 to your computer and use it in GitHub Desktop.
Save omo/11604 to your computer and use it in GitHub Desktop.
/* sql/client.c */
int STDCALL
mysql_real_query(MYSQL *mysql, const char *query, ulong length)
{
...
if (mysql_send_query(mysql,query,length))
DBUG_RETURN(1);
DBUG_RETURN((int) (*mysql->methods->read_query_result)(mysql));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment