orm-mapping-db-to-ruby-object-lab-online-web-sp-000

时间:2024-04-08 15:19:28
【文件属性】:

文件名称:orm-mapping-db-to-ruby-object-lab-online-web-sp-000

文件大小:9KB

文件格式:ZIP

更新时间:2024-04-08 15:19:28

Ruby

ORM将数据库行映射到Ruby对象 目标 编写将数据库行转换为Ruby对象的方法 编写允许您搜索数据库的方法 概述 我们将继续建立我们应用程序的Student类。我们正在构建一个应用程序,以帮助公立学校的管理员跟踪学生。在这个程序中,我们有一个Student班。每个学生都有两个属性,即name和grade ,即9th,10th,11th等。 我们的管理员需要将此类生成的学生对象保存到数据库中。我们已经在config/environment.rb文件中为您设置了数据库。 让我们来看看: require 'sqlite3' require_relative '../lib/student' DB = { :conn => SQLite3 :: Database . new ( "db/students.db" ) } 您可以在整个程序中引用您与数据库的连接,如下所示: DB[:conn] 。


【文件预览】:
orm-mapping-db-to-ruby-object-lab-online-web-sp-000-master
----.gitignore(642B)
----.rspec(53B)
----LICENSE.md(1KB)
----CONTRIBUTING.md(2KB)
----db()
--------students.db(0B)
----spec()
--------student_spec.rb(5KB)
--------spec_helper.rb(86B)
----README.md(3KB)
----config()
--------environment.rb(109B)
----lib()
--------student.rb(893B)
----Gemfile(132B)
----.learn(71B)
----Gemfile.lock(668B)

网友评论