2

I know rukilo is an UI framework for Dart language but I wonder if it supports to use Mysql? And if it is, how to connect mysql with Dart? Thank you

hoantrung
  • 191
  • 1
  • 1
  • 6

1 Answers1

2

We are developing Rikulo ORM to simplify the database access (but it is not opened yet). The first version will be built on top of WebSQL (SQLite) and IndexedDB. We do have a plan to bridge it to the backend server such as MySQL. Of course, there are some security and performance challenges to deal with.

Tom Yeh
  • 1,987
  • 2
  • 15
  • 23
  • Does this mean Rikulo ORM is a server-side Dart library? – chanwit Oct 12 '12 at 15:55
  • We're shifting the focus to more on the server side and NoSQL. We almost rewrote everything since JPA style is too heavy. – Tom Yeh Dec 27 '12 at 08:03
  • Thank you, Tom. After reading other parts of the server-side Dart. It's clearly to me that Dart needs a DB/Datastore connection layer first. – chanwit Jan 11 '13 at 21:22