mysql.exe mysqld.exe
I use MySql with a selfwritten Windows Program (MASM ASSEMBLER) to administrate bankaccounts.
The program uses the following mysql commands. (%s is a string, %u is an int).
ALTER TABLE %s AUTO_INCREMENT = %u
CREATE DATABASE %s
CREATE TABLE %s
CREATE USER '%s'@'localhost' IDENTIFIED BY '%s'
DELETE FROM %s WHERE ...
DROP DATABASE %s
DROP USER '%s'@'localhost'
FLUSH PRIVILEGES
GRANT ALL PRIVILEGES ON *.* TO '%s'@'localhost' IDENTIFIED BY '%s'
INSERT INTO %s
SELECT * FROM %s WHERE ...
TRUNCATE TABLE %s
UPDATE %s SET %s
When I was writing the installation routine (which copies the mysql folders 'bin', 'data' and 'share' to the selected installation path
I detected that I only need 'mysql.exe' and 'mysqld.exe' in the 'bin folder'.
There is no change in the behaviour of the program.
Does MySQL only needs those two files to do the above described jobs ?
Subject
Written By
Posted
mysql.exe mysqld.exe
December 12, 2016 06:43AM
December 12, 2016 12:15PM
December 13, 2016 09:59PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.