GithubHelp home page GithubHelp logo

Comments (5)

xhit avatar xhit commented on July 21, 2024

How deal with this?

This function can return the Value of the field

// get the value of unexported struct
func getUnexportedHDBStruct(field interface{}) reflect.Value {
	rs := reflect.Indirect(reflect.ValueOf(field))
	return rs.Field(8)
}

The index 8 is the value and you need to specify return the []byte

v := getUnexportedHDBStruct(field)
fmt.Print(v.Bytes())

from go-hdb.

stfnmllr avatar stfnmllr commented on July 21, 2024

Please double check on
https://github.com/SAP/go-hdb/blob/master/driver/lobexample_test.go
as explanation how to deal with LOB types. In essence the Go lob type needs to provide a Reader resp a Writer interface for good reasons. LOB is 'large objects' which shouldn't necessarily be allocated as strings or bytes. If needed a strings or bytes Buffer can be used for conversion to string and / or byte[].

from go-hdb.

xhit avatar xhit commented on July 21, 2024

Ok, but I have a problem getting the value of the BLOB column.

Look this example of how I manage the decimal and blob types. Is you ExampleLob_read but for many columns.

        db, err := sql.Open("hdb", connstring)
	if err != nil {
		log.Fatal(err)
	}
	defer db.Close()

	query := "select decimal_column, blob_column from test"

	rows, err := db.Query(query)
	if err != nil {
		log.Fatal(err)
	}

	defer rows.Close()

	//The 2 is the total columns returned in query
	recordPointers := make([]interface{}, 2)

	//For Decimal Column
	var t driver.Decimal
	recordPointers[0] = &t

	//For BLOB Column
	b := new(bytes.Buffer)
	var lob driver.Lob
	lob.SetWriter(b)
	recordPointers[1] = &lob

	for rows.Next() {

		// Scan the result into the column pointers...
		if err := rows.Scan(recordPointers...); err != nil {
			log.Fatal(err)
		}

		for _, v := range recordPointers {
			switch x := v.(type) {
			case *driver.Lob:
				//How deal with this? I need the value
			case *driver.Decimal:
				d := (*big.Rat)(x)
				log.Print(d.FloatString(6))
			default:
				log.Print("is not BLOB or Decimal")
			}
		}
	}

from go-hdb.

stfnmllr avatar stfnmllr commented on July 21, 2024

Scan is going to take care, that the data of the BLOB is written to the bytes.Buffer. To access the data any method of bytes.Buffer can be used, e.g. b.Bytes(), b.String()...
Please be aware that the driver is not going to clear (refresh) the buffer implicitly, so in the example each iteration (rows.Next()) is going to append the BLOB record data to buffer b.

from go-hdb.

xhit avatar xhit commented on July 21, 2024

Tested and works. Thanks for help.

Code for documentation:

        db, err := sql.Open("hdb", connstring)
	if err != nil {
		log.Fatal(err)
	}
	defer db.Close()

	query := "select decimal_column, blob_column from test"

	rows, err := db.Query(query)
	if err != nil {
		log.Fatal(err)
	}

	defer rows.Close()

	//The 2 is the total columns returned in query
	recordPointers := make([]interface{}, 2)

	//For Decimal Column
	var t driver.Decimal
	recordPointers[0] = &t

	//For BLOB Column
	b := new(bytes.Buffer)
	var lob driver.NullLob
	lob.Lob = new(driver.Lob)
	lob.Lob.SetWriter(b)
	recordPointers[1] = &lob

	for rows.Next() {

		// Scan the result into the column pointers...
		if err := rows.Scan(recordPointers...); err != nil {
			log.Fatal(err)
		}

		for _, v := range recordPointers {
			switch x := v.(type) {
			case *driver.NullLob:
				if x.Valid {
					log.Print(b.Bytes())
				} else {
					log.Print("NULL")
				}
				b.Reset()
			case *driver.Decimal:
				d := (*big.Rat)(x)
				log.Print(d.FloatString(6))
			default:
				log.Print("is not BLOB or Decimal")
			}
		}
	}

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.