GithubHelp home page GithubHelp logo

Comments (3)

stfnmllr avatar stfnmllr commented on June 22, 2024

Can you please share a source code example (test) to reproduce the issue?
Thanks an best regards

from go-hdb.

jdezego avatar jdezego commented on June 22, 2024

If you want to actually test this you'll need a running instance of HANA:

package main

import (
	"bytes"
	"compress/gzip"
	"database/sql"
	"encoding/json"
	"fmt"
	"io/ioutil"
	"net/http"

	_ "github.com/SAP/go-hdb/driver"
)

//structure to hold JSON data
type insightsEvent struct {
	EventType string `json:"eventType"`
	DiskUsage string `json:"diskUsage"`
}

func main() {

	//initialize event object and set EventType
	var event insightsEvent
	event.EventType = "ServiceCheck"

	dsn := "hdb://USERNAME:PASSWORD@HOST:PORT"
	db, err := sql.Open("hdb", dsn)
	defer db.Close()

	if err != nil {
		fmt.Println("Connection failed")
	}

	q := "SELECT m_disks.used_size / m_disks.total_size * 100 FROM sys.m_disks"

	//fill remaining event fields with data returned from query
	err = db.QueryRow(q).Scan(&event.DiskUsage)

	if err != nil {
		fmt.Println(err)
	}

	//convert event to json
	e, err := json.Marshal(event)
	if err != nil {
		fmt.Println(err)
		return
	}

	stringer := string(e)
	fmt.Println(stringer)

This is what gets printed:

{"eventType":"ServiceCheck","diskUsage":"4q\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000080"}

from go-hdb.

stfnmllr avatar stfnmllr commented on June 22, 2024

please use the expected go type (e.g. float) for scan field event.DiskUsage - with the current string type the result is the string representation of the underlying 'raw' value provided by the hdb interface

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.