user198729
user198729

Reputation: 63686

How to run a programme from MySQL?

mysql > path_to_bin/name.exe

Is there a solution?

Upvotes: 0

Views: 179

Answers (2)

JohnK813
JohnK813

Reputation: 1124

You can use \! on the Linux side to execute simple shell commands, but

  1. I can't say for certain that this will work on the Windows side, and
  2. I agree with Filip's answer that there are inherent risks in doing this.

Source

Upvotes: 2

Filip Ekberg
Filip Ekberg

Reputation: 36327

No, that would be a huge security risk.

Upvotes: 3

Related Questions