回答
最簡單的方法可能是使用JRuby,因爲HSQLDB是一個Java數據庫。
否則,嘗試http://www.infoq.com/news/ruby-driver-hsqldb和http://rubyforge.org/projects/hypersonic/
你可能也想看看的SQLite,而不是HSQLDB,因爲它們是相似的,但SQLite是沒有用Java編寫的。
從http://www.sqlite.org/whentouse.html
With the default page size of 1024 bytes, an SQLite database is limited in size to 2 terabytes (2^41 bytes). And even if it could handle larger databases, SQLite stores the entire database in a single disk file and many filesystems limit the maximum size of files to something less than this. So if you are contemplating databases of this magnitude, you would do well to consider using a client/server database engine that spreads its content across multiple disk files, and perhaps across multiple volumes.
閱讀頁面的其餘部分,看它是否會適合您的需求。
兩個其他頁面可能對您有用:
http://www.sqlite.org/faq.html
http://www.sqlite.org/mostdeployed.html
如果你在JRuby:
1-從here下載HSQLDB的驅動程序和的hsqldb.jar添加到您的/ LIB
2。在項目的config/database.yml
文件:
...
development:
database: db_name
adapter: jdbc
driver: org.hsqldb.jdbc.JDBCDriver
schema: K12_EDUCATION
url: jdbc:hsqldb:file:./db_files/db_name
- 1. 如何在Ruby on Rails中使用Procs?
- 2. 如何在Ruby on Rails中使用https
- 3. 如何使用Ajax在Ruby on Rails的
- 4. 如何在ruby-on-rails中使用create_association
- 5. 如何在Ruby on Rails中使用TCPServer?
- 6. 在rails上使用uploadify on ruby
- 7. 在Ruby on Rails上使用qTip2
- 8. 在Chromebook上使用Ruby On Rails?
- 9. 在Ruby on Rails上使用Mongoid投票
- 10. Ruby on Rails 4 - 在Heroku上使用Rake
- 11. 在Ruby on Rails上使用模型
- 12. 在Ruby on rails上使用Javascript
- 13. 如何在Ruby on Rails的
- 14. 如何在Ruby on Rails的
- 15. 如何在heroku上使用多個ruby on rails應用程序
- 16. 在Ruby on Rails上捲曲
- 17. 在iPhone上的Ruby on rails
- 18. Ruby on Rails:如何使用關係?
- 19. 如何使用Ruby on Rails的
- 20. 如何設置使用Ruby on Rails的
- 21. Ruby on Rails:如何使用select?
- 22. 如何使用Eclipse for Ruby on Rails(RoR)
- 23. 如何使用Ruby on Rails關聯?
- 24. 如何使用Ruby on Rails的
- 25. 如何使用Ruby on Rails創建Wiki?
- 26. 如何使用Ruby on Rails操作DOM
- 27. Ruby on Rails:如何使用OAuth2 :: AccessToken.post?
- 28. 如何在Ruby on Rails 3.2.12上使用Twitter Bootstrap?
- 29. 如何在Ubuntu 14.04上使用Apache2 + Ruby on Rails配置Passenger LTS
- 30. 如何在Ruby on Rails上使用Azure ML API
感謝您的回覆,但我想爲temperory存儲創建數據庫。你能告訴我什麼是用於存儲數據的sqlite的最大容量&容量差異hsqldb&sqlite – Pranoti 2010-12-20 06:13:46
我已經更新了我的答案,並詳細介紹了SQLite。查看網站了解更多信息。 – Wodin 2010-12-20 07:34:32
非常感謝你,我肯定會通過它 – Pranoti 2010-12-21 04:10:42