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

📄 06 - controlling mysql on unix.rb

📁 O Reilly Ruby Cookbook source code
💻 RB
字号:
def mysql(opts, stream)  IO.popen("mysql #{opts}", 'w') { |io| io.puts stream }end#---mysql '-u root -p[password]', <<-end  drop database if exists website_db;  create database website_db;  grant all on website_db.* to #{`id -un`.strip}@localhost;end#---

⌨️ 快捷键说明

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