我刚开始使用带有 SQLite3 和 Ruby 的数据库。我在这里遇到了我的 ruby 代码的问题。
我想创建一个代码,用户将另一条记录添加到数据库中。现在这是我的问题。
用户 sawa 找到了我的第一个问题的解决方案。谢谢!
新问题*
puts "Enter name for the new user"
x = gets.chomp
puts "Enter the type of the user"
y = gets.chomp
$db.execute('insert into customers(id,name,type) values (11,"#{x}","#{y}")')
当我运行此代码并输入 x any y 值时,它将在我的数据库中返回 #{x} 和 #{y} 而不是我创建的值。