Re: [go-nuts] Re: Do you guys use ORMs when working with SQL?

2017-09-10 Thread main . iden
Modern ORMs at least more type-safe than SQL: there is no work with strings, only with autogenerated constants. Also ORMs abstract you not only from SQL coding, but also from specific for DBMS SQL: with ORM you can easily switch PostgreSQL to MySQL. воскресенье, 10 сентября 2017 г., 3:43:42 UTC

[go-nuts] Re: Do you guys use ORMs when working with SQL?

2017-09-09 Thread main . iden
Take a look at kallax and queryset . They are modern typesafe ORMs, allowing to write safe and reusable code. среда, 28 декабря 2016 г., 1:00:05 UTC+3 пользователь Zippoxer написал: > > I haven't written SQL for years. I