search for: sqlite3_in_memory_example

Displaying 2 results from an estimated 2 matches for "sqlite3_in_memory_example".

2006 Mar 31
14
[newbi] Create a Model
...ning # SQLite version 2.x # gem install sqlite-ruby sqlite_example: adapter: sqlite database: db/development.sqlite2 # SQLite version 3.x # gem install sqlite3-ruby sqlite3_example: adapter: sqlite3 database: db/development.sqlite3 # In-memory SQLite 3 database. Useful for tests. sqlite3_in_memory_example: adapter: sqlite3 database: ":memory:" When i tabe this line in Terminal $ script/generate Model Expense I show only that exists app/models/ exists test/unit/ exists test/fixtures/ create app/models/expense.rb create test/unit/expense_test.rb...
2006 Mar 30
2
database.yml and Dreamhost
...ning # SQLite version 2.x # gem install sqlite-ruby sqlite_example: adapter: sqlite database: db/development.sqlite2 # SQLite version 3.x # gem install sqlite3-ruby sqlite3_example: adapter: sqlite3 database: db/development.sqlite3 # In-memory SQLite 3 database. Useful for tests. sqlite3_in_memory_example: adapter: sqlite3 database: ":memory:" -- Posted via http://www.ruby-forum.com/.