我想使用 Applescript 在本地 mysql 数据库中插入值。我正在使用 MAMP。
我为连接找到了这个,但它不起作用:(错误号 -60007)
set mysql_db to "my_database"
set mysql_user to "root"
set mysql_host to "localhost"
set mysql_pw to "root"
set mysql_table to "my_table"
tell application "Finder"
# Start MAMP's Apache server
do shell script "/Applications/MAMP/bin/startApache.sh &" password mysql_pw user name mysql_user with administrator privileges
# Start MAMP's MySQL server
do shell script "/Applications/MAMP/bin/startMysql.sh > /dev/null 2>&1"
end tell
如何在我的数据库中插入一些值?