大佬们,我想请教一下。我在vs2022创建了一个数据库然后想把位置在“C:\用户\31651\桌面”的Excel表内的数据导入到已经创建好的数据库中,但运行之后弹出一个from1的窗口并且没有内容,同时提示执行批处理时出错。信息提示为: ExecuteReader 要求已打开且可用的 Connection。连接的当前状态为已关闭。
exec sp_configure 'show advanced options',1
reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
USE ImportFromExcel;
GO
INSERT INTO Customers (Customers是在vs上创立的数据库表名)
select * from opendatasource('Microsoft.ACE.OLEDB.12.0','data source=C:\用户\31651\桌面';extended properties=excel 5.0')...[Sheet1$];
GOC: