Handling Quotation when Inserting Table to SQL Database
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ledger Yu
el 13 de Jun. de 2018
Respondida: Ledger Yu
el 13 de Jun. de 2018
I have a table that looks like this:
id = [1 2]';
name = {'abc', 'a''bc'}';
data = table(id,name);
disp(data)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/191231/image.png)
Now when I tried to insert this table to a MS SQL database, I got this error:
hdr = {'id','name'};
insert(conn, 'userName.dbName.tableName', hdr, data)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/191232/image.png)
Apparently it's because of the single quotation mark in the second row of the table, as I can see the first row got inserted successfully.
Thoughts?
2 comentarios
Kojiro Saito
el 13 de Jun. de 2018
I cannot reproduce this issue in MATLAB R2018a with SQL Server 2016. Which MATLAB and SQL Server versions are you using?
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Database Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!