2024 Jun 11 2:38 PM
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
2024 Jun 14 6:53 AM
2024 Jun 15 8:46 AM
Vector DB is only existing in HANA Cloud version. So this data type will probably also only exist there. What do you have?
2024 Jun 17 5:19 AM
2024 Jun 18 3:19 PM