I want to execute some mysql statements that are stored in a text file from my C program using the mysql.h library.

My inclination was to do something like the following, but this doesn't work:

mysql_query(conn, "source test.mysql");

This is because the SOURCE command is not a mysql statement in and of itself.

Is there a way call the SOURCE command programmatically and not from the command line?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The source command is a built-in command in the mysql client program, it isn't a SQL command. Your best bet is to either call the mysql client program using the C system function (or an equivalent), or read the file text file yourself a command at a time and pass them to your query function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.