GithubHelp home page GithubHelp logo

help with decimals about go-hdb HOT 6 CLOSED

sap avatar sap commented on July 2, 2024
help with decimals

from go-hdb.

Comments (6)

iambudi avatar iambudi commented on July 2, 2024 1

@d024441 The sample usage does not clear since it does not use precision or comma. Let's say i have populated data in table 1550000.22. Using the example it will be read as 155000022.

var out driver.Decimal
fmt.Printf("Decimal value: %s", (*big.Rat)(&amount).String()) // Cast scan variable to *big.Rat to use *big.Rat methods.

from go-hdb.

stfnmllr avatar stfnmllr commented on July 2, 2024

Hi,
for decimals please use type Decimal (or NullDecimal respectively). Decimal is a Go big.Rat type (which provides you with methods to convert it to a string, etc.) extended by Scan and Value methods to use it in conjunction with the Go SQL interface.
Please see

Please give me feedback if that helps or if you need some example code in addition.

from go-hdb.

scotthathaway avatar scotthathaway commented on July 2, 2024

I saw the example, but did not know how to actually implement it since I am new to Go.

Here is my code:

rows, err := db.Query("select top 1 my_dec_field from system.mytable") if err != nil { return "", err } defer rows.Close() columns, err := rows.Columns() if err != nil { return "", err } count := len(columns) tableData := make([]map[string]interface{}, 0) values := make([]interface{}, count) valuePtrs := make([]interface{}, count) for rows.Next() { for i := 0; i < count; i++ { valuePtrs[i] = &values[i] } rows.Scan(valuePtrs...) entry := make(map[string]interface{}) for i, col := range columns { var v interface{} val := values[i] b, ok := val.([]byte) if ok { v = string(b) } else { v = val } entry[col] = v } tableData = append(tableData, entry) }

Given this code, how would I tell that the field that came out was a decimal and then decode it?

Thanks,
Scott

from go-hdb.

stfnmllr avatar stfnmllr commented on July 2, 2024

Hi,
the driver uses type Rat from math.big to represent database decimals in Go. For the conversion between the database decimal representation and the Go Rat type, the driver implements the Decimal data type.
For the usage please see the newly added example at:
https://godoc.org/github.com/SAP/go-hdb/driver#example-Decimal
Hope, that helps.

from go-hdb.

iambudi avatar iambudi commented on July 2, 2024

Should i open a new issue? Thanks

from go-hdb.

stfnmllr avatar stfnmllr commented on July 2, 2024

Yes, sure - and please provide a complete example - in the example shared the definition and value of amount is not clear.

from go-hdb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.