D money data type compatible with postgresql money

2018-11-17 Thread Václav Kozák via Digitalmars-d-learn
Hello, I have a column of type money in my database. I need to pull the data from the db in my vibe.d backend, but it can't handle such data type. How can I do it? Should I use some library (which?)? Thanks.

Re: D money data type compatible with postgresql money

2018-11-17 Thread Alex via Digitalmars-d-learn
On Saturday, 17 November 2018 at 11:48:56 UTC, Václav Kozák wrote: Hello, I have a column of type money in my database. I need to pull the data from the db in my vibe.d backend, but it can't handle such data type. How can I do it? Should I use some library (which?)? Thanks. At code.dlang.org

Re: D money data type compatible with postgresql money

2018-11-17 Thread Daniel Kozák via Digitalmars-d-learn
On Saturday, 17 November 2018 at 11:48:56 UTC, Václav Kozák wrote: Hello, I have a column of type money in my database. I need to pull the data from the db in my vibe.d backend, but it can't handle such data type. How can I do it? Should I use some library (which?)? Thanks. You could use row.

Re: D money data type compatible with postgresql money

2018-11-17 Thread Daniel Kozák via Digitalmars-d-learn
On Saturday, 17 November 2018 at 12:35:45 UTC, Daniel Kozák wrote: On Saturday, 17 November 2018 at 11:48:56 UTC, Václav Kozák wrote: Hello, I have a column of type money in my database. I need to pull the data from the db in my vibe.d backend, but it can't handle such data type. How can I do i