⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mysql_fix_extensions

📁 开启mysql的远程连接的方法 mysql-noinstall-5.1.6-alpha-win32.zip
💻
字号:
#!/usr/bin/perl# This is a utility for MySQL. It is not needed by any standard part# of MySQL.# Usage: mysql_fix_extentions datadir# does not work with RAID, with InnoDB or BDB tables# makes .frm lowercase and .MYI/MYD/ISM/ISD uppercase# useful when datafiles are copied from windowsdie "Usage: $0 datadir\n" unless -d $ARGV[0];for $a (<$ARGV[0]/*/*.*>) { $_=$a;  s/\.frm$/.frm/i;  s/\.(is[md]|my[id])$/\U$&/i;  rename ($a, $_) || warn "Cannot rename $a => $_ : $!";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -