Amazon AWS SDK Manual de usuario Pagina 27

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 29
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 26
secret_access_key: REPLACE_WITH_SECRET_ACCESS_KEY
test:
<<: *development
production:
<<: *development
6. Create app/models/my_record.rb as follows:
class MyRecord < AWS::Record::Base
string_attr :name
end
7. Create the SimpleDB domain:
$ rails console
> MyRecord.create_domain
8. Now, you can play around with the model by creating some records and querying them:
> MyRecord.find(:all).to_a
=> []
> MyRecord.new(:name => "The first one").save
=> true
> MyRecord.new(:name => "The second one").save
=> true
> MyRecord.where('name like ?', "%first%").count
=> 1
Exit the rails console before continuing to the next step:
> exit
To generate a scaffold controller for your model
1. Type the following command:
$ rails generate scaffold_controller MyRecord name:string
rails server
2. Add a route to your scaffold controller in config/routes.rb:
Version v1.0.0
24
AWS SDK for Ruby Developer Guide
Run the Samples
Vista de pagina 26
1 2 ... 22 23 24 25 26 27 28 29

Comentarios a estos manuales

Sin comentarios