This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sqlite3' | |
require_relative 'post_db' # Setup db table | |
# Open a database | |
db = SQLite3::Database.new "test.db" | |
while true | |
# Get book name | |
puts "Find post by name:" | |
post_name = gets.strip |
NewerOlder