SQL Server 2008 存储过程调用 MATLAB
是否可以在存储过程中调用 MATLAB 命令?,例如
EXEC(MATLAB_COMMAND(Argument1,argument2))
Is it possible to call a MATLAB command within a stored Procedure?, something like
EXEC(MATLAB_COMMAND(Argument1,argument2))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有任何有关 SQL Sever 2008 的工作经验,我会说不。参考mysql文档,存储过程的描述为:
这个想法是将 SQL 查询存储在 SQL 服务器上。
您应该继续以其他方式进行。从 MATLAB 访问 SQL Server,最终调用存储过程。您所需要的只是一个 jdbc 驱动程序,利用 MATLAB 的 Java 脚本功能。
Without any working experience concerning SQL Sever 2008, I would say no. Referring to the mysql documentation, a stored procedure is described as:
The idea is to store SQL queries on your SQL server.
You should proceed to other way round. Access your SQL Server from MATLAB, eventually calling stored procedures. All you need is a jdbc driver, leveraging MATLAB's Java scripting capabilities.