On May 13, 2:28 am, jinguoli <[email protected]> wrote: > diff --git a/README.rdoc b/README.rdoc > index c3da0eb..0360bb4 100644 > --- a/README.rdoc > +++ b/README.rdoc > @@ -44,15 +44,15 @@ If you have any comments or suggestions please > post to the Google group. > > DB.create_table :items do > primary_key :id > - String name > - Float price > + String :name > + Float :price > end > > items = DB[:items] # Create a dataset > > # Populate the table > items.insert(:name => 'abc', :price => rand * 100) > - items.insert(name => 'def', :price => rand * 100) > + items.insert(:name => 'def', :price => rand * 100) > items.insert(:name => 'ghi', :price => rand * 100) > > # Print out the number of records
Thanks, I just pushed this fix. Jeremy --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en -~----------~----~----~----~------~----~------~--~---
