cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

.NET USING SAP HANA DB REAL_VECTOR

agey76
Explorer
0 Kudos
307

Hello,

when i create a table with .NET i get the error: "sql syntax error: incorrect syntax near "REAL_VECTOR": line 1 col 50 (at pos 50)'"

I think i have the newest version of libadonet.dll (2.20.22.39682).

Here my example code:

var connection = new HanaConnection(_connectionString);
connection.Open();

var command = new HanaCommand($"CREATE COLUMN TABLE VECTORTAB (ID NVARCHAR, DATA REAL_VECTOR);", connection);
command.ExecuteNonQuery();

connection.Close();

Is it not possible to use the new Datatype REAL_VECTOR?

Greetings,
Andreas

Accepted Solutions (0)

Answers (1)

Answers (1)

agey76
Explorer
0 Kudos

I have updated to the newsest version 2.20.23, but same error.