GithubHelp home page GithubHelp logo

Comments (3)

stfnmllr avatar stfnmllr commented on July 21, 2024

Please provide a proper issue description with an code example to reproduce the error.
Anyway, referring to the issue headline and if the log output is correct
>>> unsupported lobCESU8Type conversion: string e1itpn70fg
it looks like an attempt to insert a DB LOB type via a Go string parameter which is not supported. Please refer to the documentation and the LOB examples provided in go-hdb documentation.

from go-hdb.

 avatar commented on July 21, 2024

We create one table and convert the type to lob as below. and insert the data as the bulk insert.
create column table T2 (a int, b varchar(10);
alter table T2 alter (B clob page loadable) online;
testSql := "InsertData: INSERT INTO T2 VALUES($2)"
func bulkInsert(db *sql.DB, testSql string) {
bulkInsertString := testSql
bulkInsertString = strings.Replace(bulkInsertString, "$2", "?, ?", -1)
bulkInsertString = strings.Replace(bulkInsertString, "INSERT", "BULK INSERT", -1)

log.Info(bulkInsertString)
stmt, err := db.Prepare(bulkInsertString) // Prepare bulk query.
if err != nil {
	log.Fatal(err)
}
defer stmt.Close()

for i := 0; i < 10000; i++ {
	randValue := CreateRandomString(10)
	if _, err := stmt.Exec(i, randValue); err != nil {
		log.Fatal(err)
	}
}
// Call final stmt.Exec().
if _, err := stmt.Exec(); err != nil {
	log.Fatal(err)
}

}

func randomResult(typeList []string) string {
colTypeIndex := rand.Intn(len(typeList))
return typeList[colTypeIndex]
}

from go-hdb.

stfnmllr avatar stfnmllr commented on July 21, 2024

Thanks for the explanation! Like presumed you are using a string variable (randValue) as argument for a CLOB field but you need to use a driver.Lob field instead (please see https://godoc.org/github.com/SAP/go-hdb/driver#Lob and the examples for reference).
To use 'bulk inserts' with Lob arguments please take care to use the latest go-hdb version (>= 0.100.13).
Tip: do not use LOB fields if not needed as you definitely get an negative impact on performance (at least the double amount of client - server roundtrips) compared to standard fields like a varchar.

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.