Re: [rust-dev] Generic Database Bindings

2014-06-23 Thread Laxmi Narayan NIT DGP
hey rust community , i want initiate this project .. where can i get started ? * Laxmi Narayan Patel* * MCA NIT Durgapur (2011-2014)* * Mob:-8345847473* On Tue, Jun 10, 2014 at 2:09 AM, Eli Green e...@zigr.org wrote: Having looked at this library

Re: [rust-dev] Generic Database Bindings

2014-06-09 Thread Christophe Pedretti
i have started a small personal project, with for the moment, an only (but working) SQLite suport, you can find it here mainpage : http://chris-pe.github.io/Rustic/ github : https://github.com/chris-pe/Rustic documentation : http://www.rust-ci.org/chris-pe/Rustic/doc/rustic/ An example of how to

Re: [rust-dev] Generic Database Bindings

2014-06-09 Thread Laxmi Narayan NIT DGP
hey chris , can you guide me on this project ... i would like to work on it . * Laxmi Narayan Patel* * MCA NIT Durgapur ( Final year)* * Mob:-8345847473* On Mon, Jun 9, 2014 at 2:27 PM, Christophe Pedretti christophe.pedre...@gmail.com wrote: i

Re: [rust-dev] Generic Database Bindings

2014-06-09 Thread Christophe Pedretti
Hi Laxmi, to compile the project, just use the nightly version of rust and run 'rustc rustic.rs' To compile and run my sample test file, just : - download the sqlite3.dll from the SQLite web site, i use http://www.sqlite.org/2014/sqlite-dll-win32-x86-3080500.zip; - compile my sample

Re: [rust-dev] Generic Database Bindings

2014-06-09 Thread Eli Green
Having looked at this library and the other options out there, I have to say the designers of rust-postgres have built a very comfortable API and it would be an excellent place to start. The two pieces I see missing are: 1. A generic way to specify bindings inside queries. JDBC and ODBC use ?

[rust-dev] Generic Database Bindings

2014-06-08 Thread Eli Green
Hi everyone, Is there an active project for these database bindings*? There were some good comments at https://github.com/mozilla/rust/issues/14658 but I don't know if there's a repository or wiki where people can comment on specific designs or requirements. I'm a rust newbie but have dealt

Re: [rust-dev] Generic Database Bindings

2014-06-08 Thread Steve Klabnik
There isn't no. If you want to build a binding, just do it! The only one I'm really aware of right now is https://github.com/sfackler/rust-postgres ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] Generic Database Bindings

2014-06-08 Thread Vladimir Matveev
There is also rustsqlite[1]. It would be great to have generic bindings for databases, like in Go or in Java. In Rust, however, reflective approaches of these won’t work because Rust lacks structural reflection. I guess, generic bindings will have to follow type classes approach, like

Re: [rust-dev] Generic Database Bindings

2014-06-08 Thread Steve Klabnik
Like any open source, start throwing some code together and then tell us all about it! :) ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] Generic Database Bindings

2014-06-08 Thread Laxmi Narayan NIT DGP
hi , if i start working on this idea .. where can i get support ? * Laxmi Narayan Patel* * MCA NIT Durgapur ( Final year)* * Mob:-8345847473* On Sun, Jun 8, 2014 at 5:59 PM, Vladimir Matveev dpx.infin...@gmail.com wrote: There is also

Re: [rust-dev] Generic Database Bindings

2014-06-08 Thread Kevin Cantu
Worth mentioning, too, that the IRC channel is *way* more active at odd hours now than it used to be. :) irc.mozilla.org #rust Kevin On Sun, Jun 8, 2014 at 6:00 AM, Steve Klabnik st...@steveklabnik.com wrote: Like any open source, start throwing some code together and then tell us all