How do I also get headers for a table extracted in an SQL query

44 次查看(过去 30 天)
When I run:
>> results = runsqlscript(conn,'scriptfile');
I get a results output where the data is without the headers I can see when I run the same sql script via another program. How do I also get the headers in the matlab environment?

回答(1 个)

Chidvi Modala
Chidvi Modala 2020-1-24
From my understanding, you are trying to get column headers from table. When the SQL script executes, it returns two cursor objects that contain the imported data from each query in a cursor object array. You can use the following example to extract column headers from a table
datasource = 'MS SQL Server Auth';
conn = database(datasource,'',''); % Create an ODBC database connection
scriptfile = 'compare_sales.sql'; % Run the SQL script
results = runsqlscript(conn,scriptfile);
data = results(2).Data; % Display the imported data for the second query.
names = columnnames(results(2)) % Retrieve column header names from the second query
You can refer to thisdocumentation
The runsqlscript function will be removed in a future release. You can use the executeSQLScript function instead.
  1 个评论
Thomas Skov
Thomas Skov 2020-1-24
Thanks for the nice answer. However, I have the issue that my results output:
results = runsqlscript(conn,scriptfile);
does not contain two objects which mean I cannot run:
data = results(2).Data;
My cursor is only a 1x1 cursor.
Thanks in advance

请先登录,再进行评论。

类别

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

标签

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by