gpt4 book ai didi

PHP 和 SQL Server - 思考

转载 作者:可可西里 更新时间:2023-11-01 07:21:02 24 4
gpt4 key购买 nike

最近接了一个项目,性质比较独特,想请教大家一些建议。

我分别使用 asp.net/SQL Server 和 php/mysql。我从来没有把它们混为一谈。但是,我当前的项目要求我在使用 SQL Server 后端时使用 PHP 编写代码。

我找到了很多关于如何连接到 SQL Server 的文章,但想在这里问一个问题。陷阱是什么?

在 SQL Server 后端使用 PHP 与使用 MySQL 有何不同?

最佳答案

我曾将一个项目从 PHP/MySql 转换为 PHP/MSSQL。我将在此处提供我在转换时发现的内容的注释。我认为出于某种原因我最终使用了 odbc 命令而不是 mssql 因为它们似乎更可靠,尤其是当您在同一页面中执行多个查询时 - 不要问我为什么,这就是我发现的。

我的命令语法对比图:

*mysql cmd*         *mssql cmd*         *odbc cmd*          *Notes*
mysql_errno mssql_errno odbc_error
mysql_error mssql_error odbc_errormsg
mysql_select_db mssql_select_db unneeded
mysql_query mssql_query odbc_exec odbc_exec requires the resource link parameter ($db)
mysql_affected_rows mssql_rows_affected odbc_num_rows
mysql_num_rows mssql_num_rows odbc_num_rows
mysql_fetch_object mssql_fetch_object odbc_fetch_object
mysql_close mssql_close odbc_close odbc_close requires the resource link parameter ($db)
mysql_fetch_array mssql_fetch_array odbc_fetch_array
mysql_result mssql_result odbc_result odbc_result cannot take a row index as parameter; must cycle with odbc_fetch_row
mysql_fetch_row mssql_fetch_row odbc_fetch_row odbc_fetch_row does not return the result; use odbc_fetch_row with odbc_result

我的用于转换的代码片段替换图表(我实际上是通过生成一个 FIND/REPLACE 字符串列表来完成这个项目,并将它们应用于整个代码库,直到不再有错误为止:-):

*old mysql code*                                        *new odbc code*                             *Notes*
for ($i = 0; $i < mysql_num_rows($result); $i++) while (odbc_fetch_row($result)) odbc_num_rows doesn't usually work for finding how many rows returned
mysql_result($result, $i odbc_result($result odbc_result can't go request the result for a specific row, have to use odbc_fetch_row
NOW() GETDATE() NOW() function in mysql is GETDATE() in sql server
if (connect_db()) if ($db = connect_db()) In mysql, you don't have to keep track of the $db resource - with odbc, you do
if (!connect_db()) if (!($db = connect_db())) See notes on previous entry
odbc_fetch_row($result); When retrieving a single row, you have to call fetch_row with odbc, but not with mysql
if (mysql_num_rows($result) == 1) if (odbc_fetch_row($result)) odbc_num_rows usually doesn't work, so for a single row, just do if odbc_fetch_row
if (mysql_errormsg() || mysql_num_rows($ASISHSresult) == 0) if (!odbc_errormsg() && !odbc_fetch_row($ASISHSresult))
limit ##, ## row_number() over (order by ???) limit function in mysql has to be translated to row_number() function in odbc (also must be inc. by 1 to offset off-by-1 error between mysql and sql server)
match(body) against ('expr' in boolean mode) contains(body, 'expr') or containstable(Body, 'expr') fulltext matching in sql server has different syntax than mysql
text_column = value cast(text_column as varchar(good_size)) = value mysql can compare text column to value, sql server cannot without varchar casting
odbc_free_result($result); When you make a lot of connections, you must free results or your future connections may be ignored

最后一点。如果您像我们在本项目中那样使用内置的加密命令来加密密码,则需要在 php 而不是 mysql 中进行加密。

关于PHP 和 SQL Server - 思考,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7681831/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com