Write "BIT" data type to existing PostgreSQL table from Matlab

1 次查看(过去 30 天)
Hi everyone,
I created a table in PostgreSQL that has a data column with the BIT type:
create table parameters (
row_num serial,
value_parameter bit(1),
primary key (row_num);
);
After that I successfully connected to the PostgreSQL from MATLAB, and tried to add a record to the table:
conn = postgresql(username,password,'DatabaseName',"postgres",'PortNumber',5432);
my_table = table("0", 'VariableNames', 'value_parameter');
sqlwrite(conn, 'public.parameters', my_table);
As a result I get the error:
"The VariableNames property is a cell array of character vectors. To assign multiple variable names, specify nonempty names in a string array or a
cell array of character vectors".
I have tried many ways to write the request but invariably get the above error. How to correctly write such a request, or where can I read about it?
Thank you in advance

回答(1 个)

Vimal Rathod
Vimal Rathod 2021-2-22
Hi,
Try using the following code.
my_table = table("0", 'VariableNames', {'value_parameter'});
You were getting the error because you didn't put the variable names in the cell array format.
Refer to the following link to see another example with the same syntax

类别

Help CenterFile Exchange 中查找有关 Database Toolbox 的更多信息

产品


版本

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by