+ All Categories
Home > Documents > Chapter 07 Recipe A Oracle 2009-04-01

Chapter 07 Recipe A Oracle 2009-04-01

Date post: 30-May-2018
Category:
Upload: odall
View: 217 times
Download: 0 times
Share this document with a friend
16
Chapter 7 – Recipe A Using Oracle as the Database Engine Recipe A: Using Oracle as the Database Engine So far in the book we have taken a database agnostic approach to the tutorials. One of the most powerful features of Hobo and Rails using the ActiveRecord Object Relational Mapping (ORM) capability is that you can usually ignore the back-end issue and focus on solving the business problem. However, when you are in an environment where the database engine choice has been made for you, or when you need to access legacy data as one part or your software solution, you need to learn how to configure Hobo for other databases. In this recipe we will provide instructions for these two options: 1.Use and existing Oracle database schema. 2.Download and install a fresh Oracle database and create a schema for use with Hobo. For either of these options you will first need to install the following two ruby gems: C:\ruby> gem install ruby-oci8 –v 1.0.3 C:\ruby> gem install activerecord-oracle-adapter © Copyright 2009 Barquin International Page 1
Transcript

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 1/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 2/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 3/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 4/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 5/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 6/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 7/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 8/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 9/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 10/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 11/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 12/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 13/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 14/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 15/16

8/14/2019 Chapter 07 Recipe A Oracle 2009-04-01

http://slidepdf.com/reader/full/chapter-07-recipe-a-oracle-2009-04-01 16/16


Recommended