Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FromRow and ToRow traits #28

Closed
lilac opened this issue Jan 6, 2014 · 5 comments
Closed

Add FromRow and ToRow traits #28

lilac opened this issue Jan 6, 2014 · 5 comments

Comments

@lilac
Copy link

lilac commented Jan 6, 2014

Support converting a basic Rust value from and to a PostgresRow instance, so that the insertion and query api would be much cleaner.

For example, instead of

conn.execute("INSERT INTO person (name, time_created, data)
                    VALUES ($1, $2, $3)",
                 [&me.name as &ToSql, &me.time_created as &ToSql,
                  &me.data as &ToSql]);

you write

conn.execute("INSERT INTO person (name, time_created, data)
                    VALUES ($1, $2, $3)", me.toRow());
@sfackler
Copy link
Owner

sfackler commented Jan 6, 2014

You can write that yourself:

impl Person {
    fn to_row<'a>(&'a self) -> [&'a ToSql, ..3] {
        [&self.name as &ToSql, &self.time_created as &ToSql, &self.data as &ToSql]
    }
}

Once rust-lang/rust#11151 lands, It'll be possible to do some interesting ORM-y stuff.

@lilac
Copy link
Author

lilac commented Jan 6, 2014

Thanks for the quick response!
Does the current deriving technique support deriving user created traits like "[#deriving(FromRow, ToRow)] struct Person"?

@sfackler
Copy link
Owner

sfackler commented Jan 6, 2014

All derivable traits are currently hardcoded into the compiler. The PR I linked above will allow something like #[derivive_rows] struct Person, but not #[deriving(FromRow, ToRow)] struct Person. We aren't yet sure if we want to make deriving a "special" decorator or not.

@lilac
Copy link
Author

lilac commented Jan 6, 2014

Oh, I've found the answer to my question from http://static.rust-lang.org/doc/master/tutorial.html:
The full list of derivable traits is Eq, TotalEq, Ord, TotalOrd, Encodable Decodable, Clone, DeepClone, IterBytes, Rand, Default, Zero, and ToStr.

@sfackler Excellent! That sounds promising!

@sfackler
Copy link
Owner

sfackler commented Feb 7, 2014

I've been thinking about this, and I don't think it's possible to make a reasonable API without creating a fully featured ORM which is beyond the scope of this library.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants