久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      <i id='RA5cD'><tr id='RA5cD'><dt id='RA5cD'><q id='RA5cD'><span id='RA5cD'><b id='RA5cD'><form id='RA5cD'><ins id='RA5cD'></ins><ul id='RA5cD'></ul><sub id='RA5cD'></sub></form><legend id='RA5cD'></legend><bdo id='RA5cD'><pre id='RA5cD'><center id='RA5cD'></center></pre></bdo></b><th id='RA5cD'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='RA5cD'><tfoot id='RA5cD'></tfoot><dl id='RA5cD'><fieldset id='RA5cD'></fieldset></dl></div>
      <legend id='RA5cD'><style id='RA5cD'><dir id='RA5cD'><q id='RA5cD'></q></dir></style></legend>
    1. <small id='RA5cD'></small><noframes id='RA5cD'>

      • <bdo id='RA5cD'></bdo><ul id='RA5cD'></ul>
      <tfoot id='RA5cD'></tfoot>

      1. SQLSRV 驅動程序與用于 PHP 和 MS SQL Server 的 PDO 驅動

        SQLSRV driver vs. PDO driver for PHP with MS SQL Server(SQLSRV 驅動程序與用于 PHP 和 MS SQL Server 的 PDO 驅動程序)
        <tfoot id='3RyTb'></tfoot>
      2. <legend id='3RyTb'><style id='3RyTb'><dir id='3RyTb'><q id='3RyTb'></q></dir></style></legend>

          • <bdo id='3RyTb'></bdo><ul id='3RyTb'></ul>

          • <small id='3RyTb'></small><noframes id='3RyTb'>

                <tbody id='3RyTb'></tbody>

                  <i id='3RyTb'><tr id='3RyTb'><dt id='3RyTb'><q id='3RyTb'><span id='3RyTb'><b id='3RyTb'><form id='3RyTb'><ins id='3RyTb'></ins><ul id='3RyTb'></ul><sub id='3RyTb'></sub></form><legend id='3RyTb'></legend><bdo id='3RyTb'><pre id='3RyTb'><center id='3RyTb'></center></pre></bdo></b><th id='3RyTb'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='3RyTb'><tfoot id='3RyTb'></tfoot><dl id='3RyTb'><fieldset id='3RyTb'></fieldset></dl></div>

                  本文介紹了SQLSRV 驅動程序與用于 PHP 和 MS SQL Server 的 PDO 驅動程序的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在 SQLSRV 驅動程序與 PDO 驅動程序之間進行選擇時,我應該考慮哪些因素(對于帶有 MS SQL 服務器的 PHP)?

                  What considerations should I take into account when choosing between SQLSRV driver vs. PDO driver (for PHP with MS SQL server)?

                  我看到了之前的 Stackoverflow 帖子(在 Windows 上使用 PHP 時,哪個更好(1)SQL Server 的本機驅動程序或(2)PDO 驅動程序? )但答案似乎有點缺乏并且沒有沒有提到 這篇文章.

                  I saw this previous Stackoverflow post ( When using PHP on Windows, what is better (1) the native driver for SQL Server or (2) the PDO driver? ) but the answer seems a bit lacking and doesn't mention all the benefits of using the SQLSRV driver as mentioned in this article.

                  我正在尋找一個全面的和最新的(例如,SQLSRV 驅動程序是否仍然只適用于 Windows?)答案,程序員可以將其稱為資源.

                  I'm looking for a comprehensive and up-to-date (eg. is it still the case that SQLSRV driver is only available for Windows?) answer that programmers can refer to as a resource.

                  推薦答案

                  PDO 允許您編寫合理的 DB 中立的代碼.

                  PDO allows you to write you code to be reasonably DB-neutral.

                  如果你想要真正的數據庫中立,你會想要使用一個完整的數據庫抽象層,比如 NotORM-- 使用普通 PDO,您仍然需要注意 SQL 語法差異,但至少您的基本 PHP 代碼將與 DB 無關.

                  If you want truly DB-neutral, you'd want to use a full DB abstraction layer like NotORM -- with plain PDO, you'd still need to be careful about SQL syntax difference, but at least your basic PHP code would be DB-neutral.

                  DB 中立現在似乎并不重要——如果你使用 SQL Server,那么你可能被告知這是必需的,沒有別的——但是你無法預測事情會如何改變未來,所以如果選擇是在 DB 中立驅動程序和 DB 特定驅動程序之間,并且您沒有任何其他理由偏愛,那么選擇中性驅動程序......它會讓生活變得很多如果您的公司被接管并且新老板想使用 Oracle 作為數據庫,則更容易!

                  Being DB-neutral may not seem important now -- if you're using SQL Server, then you've probably been told that's what is required and nothing else -- but you can't predict how things will change in the future, so if the choice is between a DB-neutral driver and a DB-specific driver, and you don't have any other reason for a preference, then go with the neutral one.... it'll make life a lot easier if your company gets taken over and the new boss wants to use Oracle as the DB!

                  此外,因為它是 DB 中立的,所以 PDO 在 PHP 社區中更標準且更廣為人知.與使用 MSSQL 驅動程序相比,您將從在線站點(如本站點)獲得更多有關 PDO 的幫助.

                  Also, because it's DB neutral, PDO is more standard and more well-known in the PHP community. You'll get a lot more help with PDO from sites online (like this one) than with the MSSQL driver.

                  這篇關于SQLSRV 驅動程序與用于 PHP 和 MS SQL Server 的 PDO 驅動程序的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)
                • <small id='dXYn7'></small><noframes id='dXYn7'>

                    <i id='dXYn7'><tr id='dXYn7'><dt id='dXYn7'><q id='dXYn7'><span id='dXYn7'><b id='dXYn7'><form id='dXYn7'><ins id='dXYn7'></ins><ul id='dXYn7'></ul><sub id='dXYn7'></sub></form><legend id='dXYn7'></legend><bdo id='dXYn7'><pre id='dXYn7'><center id='dXYn7'></center></pre></bdo></b><th id='dXYn7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='dXYn7'><tfoot id='dXYn7'></tfoot><dl id='dXYn7'><fieldset id='dXYn7'></fieldset></dl></div>
                    1. <legend id='dXYn7'><style id='dXYn7'><dir id='dXYn7'><q id='dXYn7'></q></dir></style></legend>
                          <tbody id='dXYn7'></tbody>
                        <tfoot id='dXYn7'></tfoot>

                          • <bdo id='dXYn7'></bdo><ul id='dXYn7'></ul>
                            主站蜘蛛池模板: 97视频在线观看免费 | 日韩a在线观看 | 一区二区三区黄色 | 最新中文字幕在线观看 | 国产精品偷乱一区二区三区 | 欧美在线| 日韩av免费看 | 黄色a毛片 | 精品无人国产偷自产在线 | 99福利视频 | 亚洲网在线 | 免费观看全黄做爰的视频 | 亚洲欧美日韩成人 | 国产福利网站 | 亚洲精品少妇 | 亚洲激情综合 | 国产三级在线免费观看 | 婷婷综合网 | 男人的天堂久久 | 天天操综合网 | 国产一区二三区 | 国产午夜三级 | 男人操女人视频网站 | 国产精品天美传媒入口 | 午夜精品久久久久久久久久久久 | 国产精品一区在线播放 | 国产一级黄色录像 | 国产欧美日韩 | 国产精品99久久久久久久久久久久 | 国产一区二区在线播放 | 久久爱综合 | 日韩av大全 | 国产特黄 | 精品视频一区二区 | 国产成人免费 | 依人在线| 在线网站免费观看18 | 日韩一级片视频 | 欧洲黄色网 | 久久久午夜 | 亚洲视频不卡 |