使用 php 在 Dreamweaver 中存储过程
我正在制作一个网站,我想知道是否有一种方法可以在 Dreamweaver 中制作存储过程,以便它与 mysql (phpmyadmin) 通信。就像在 Visual Studio 2010 中完成的那样,您可以在其中创建与 sql server 2005/ 通信的存储过程2008年?
I am making a site and I wondered is there a way to make stored procedures in dreamweaver so that it communicates with mysql (phpmyadmin)..like it is done in visual studio 2010 where you can create stored procedures that communicate with sql server 2005/2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的朋友,Dreamweaver 和 php 与 .NET 是完全不同的世界。 MySQL确实支持存储过程,但它是与T-SQL完全不同的语言。此外,请注意,存储过程看起来像是在您的网站上发生的事情,但它都是 SQL Server 端...
要使用存储过程,您可以在 mysql 网站上学习如何调用它们以及如何创建它们,我不会不过,我知道怎么做,我从来没有在 PHP 中使用过存储过程,在我看来也从来不需要它们。
祝你好运
Dreamweaver and php is a completly different world from .NET my friend. MySQL does support stored procedure, but it's a completly different language from T-SQL. Further more, note that stored procedures look like something that happen on your website but it's all SQL server side...
To use stored procedures, you can learn on the mysql website how to call them and how to create them, i don't know how though, i kinda never use stored procedures in PHP, never needed them IMO.
Good luck