gpt4 book ai didi

ruby - 不使用 Rails 将 Ruby 连接到 Mysql

转载 作者:数据小太阳 更新时间:2023-10-29 06:35:21 25 4
gpt4 key购买 nike

如何在没有 Rails 的情况下将 Ruby 连接到 Mysql?我想使用 Ruby standalone 编写纯 ruby​​ 代码来制作 Web 应用程序。没有抽象

最佳答案

看这里

require "mysql"    # if needed

@db_host = "localhost"
@db_user = "root"
@db_pass = "root"
@db_name = "your_db_name"

client = Mysql::Client.new(:host => @db_host, :username => @db_user, :password => @db_pass, :database => @db_name)
@cdr_result = client.query("SELECT * from your_db_table_name')

关于ruby - 不使用 Rails 将 Ruby 连接到 Mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11754514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com