Use of sqlite

hi,
well, i have another problem. i would like to use a sqlite based
database in my application. do i need only sqlite gem and binaries or
also wxsqlite?
and how to use it?
maybe some tutorial or some guidelines…
thanks a lot

Gerard Rakoczy wrote:

well, i have another problem. i would like to use a sqlite based
database in my application. do i need only sqlite gem and binaries or
also wxsqlite?

Only wxRuby plus sqlite are required. SQLite is a great choice for an
application storage - I’ve been using it for several years as the
backend for a GUI application.

and how to use it?
Well, that’s up to you. There’s no particular tricks here - just load
and save the data to the database, and put a cute GUI on top of it. If
you run into problems, feel free to ask here.

alex

Gerard Rakoczy wrote:

maybe some tutorial or some guidelines…

maybe this might help?

http://sqlite-ruby.rubyforge.org/sqlite3/faq.html

Cheers,
Tim