The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Chapter 9

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Jamey Cribbs

Posts: 18
Nickname: jamey
Registered: Feb, 2006

Jamey Cribbs is a Ruby programmer. He is the developer of KirbyBase, a pure-Ruby DBMS.
Chapter 9 Posted: Feb 22, 2006 1:24 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Jamey Cribbs.
Original Post: Chapter 9
Feed Title: Is your house on fire, Clark?
Feed URL: http://www.google.com/signup/?new=erik
Feed Description: This is a blog about my experiences using KirbyBase, a pure-Ruby DBMS, and Ackbar, an ActiveRecord adapter for KirbyBase.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Jamey Cribbs
Latest Posts From Is your house on fire, Clark?

Advertisement
This chapter introduces the has_many concept, so I’m hoping Ackbar/KirbyBase don’t let me down. :) Page 102. I need to create an “orders” table and add a new column to the “line_items” table. So, I edit create_db.rb. Here’s the code for the new “orders” table: db.drop_table(:orders) if db.table_exists?(:orders) db.create_table(:orders, :name, :String, :email, :String, :address, :String, :pay_type, :String) And here’s [...]

Read: Chapter 9

Topic: Lookie! Previous Topic   Next Topic Topic: Feed changes

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use