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

  • <small id='ypJE6'></small><noframes id='ypJE6'>

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

      2. “對象已打開"使用 Delphi、SQL Server 和 ADO 時出

        quot;Object Was Openquot; error using Delphi, SQL Server and ADO(“對象已打開使用 Delphi、SQL Server 和 ADO 時出錯)

      3. <small id='vmSI6'></small><noframes id='vmSI6'>

          <tfoot id='vmSI6'></tfoot>
            <tbody id='vmSI6'></tbody>
          <legend id='vmSI6'><style id='vmSI6'><dir id='vmSI6'><q id='vmSI6'></q></dir></style></legend>

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

                <bdo id='vmSI6'></bdo><ul id='vmSI6'></ul>
                • 本文介紹了“對象已打開"使用 Delphi、SQL Server 和 ADO 時出錯的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我在打開返回大型數(shù)據(jù)集(大約 700,000 行和 75 列)的 TADOQuery 時收到對象已打開"錯誤.

                  I am getting an "Object Was Open" error when opening a TADOQuery which returns a large dataset (around 700,000 rows and 75 columns).

                  我的 8 個字段是作為 varchar(200) 的派生字段,我發(fā)現(xiàn)如果我將它們更改為 varchar(95) 或更少,或 varchar(256) 或更多,則不會發(fā)生錯誤,即僅出現(xiàn)錯誤發(fā)生在 96-255 的范圍內(nèi).如果我從查詢中刪除這些列,或者選擇較少的行,也不會發(fā)生該錯誤.

                  8 of my fields are derived fields as varchar(200), and I have found that the error does not occur if I change them to varchar(95) or less, or varchar(256) or more, i.e. the error only occurs in the range 96-255. The error also does not occur if I remove these columns from my query, or if I select less rows.

                  谷歌搜索表明這是 SQLOLEDB 的一個已知錯誤,nvarchar 字段大于 127,但對我來說并非如此.我正在使用 SQLOLEDB,但我已嘗試改為使用 SQL Server Native Client,但仍然出現(xiàn)錯誤.

                  Googling has suggested that this is a known error with SQLOLEDB with nvarchar fields greater than 127, but that is not the case for me. I am using SQLOLEDB, but I have tried changing to SQL Server Native Client instead and the error still occurs.

                  任何人都可以對此有所了解,我很難過.我正在使用 Delphi 5 和 SQL Server 2008R2,查詢將數(shù)據(jù)選擇到臨時表中,然后從臨時表中選擇,如下所示(注意這是實際查詢的簡化版本,它使用 75 列和 8 個表):

                  Can anyone shed any light on this, I'm stumped. I am using Delphi 5 and SQL Server 2008R2, and the query selects data into a temp table and then selects from the temp table, like this (n.b. this is a simplified version of the actual query, which uses 75 columns and 8 tables):

                  select memno, surname, forename, 
                  'EE Conts in Year'= CAST('' as varchar(200)),
                  'ER Conts in Year'= CAST('' as varchar(200)),
                  'AVC Conts in Year'= CAST('' AS VARCHAR(200)),
                  'ERAVC Conts in Year'= CAST('' AS VARCHAR(200)),
                  'Total EE Conts'= CAST('' AS VARCHAR(200)),
                  'Total ER Conts'= CAST('' AS VARCHAR(200)),
                  'Total AVC Conts'= CAST('' AS VARCHAR(200)),
                  'Total ERAVC Conts'= CAST('' AS VARCHAR(200)),
                  into #tmptab
                  from members
                  
                  select * from #tmptab
                  order by surname
                  

                  謝謝

                  推薦答案

                  我收到了同樣的錯誤,對我來說,對我的 TAdoQuery 屬性進行了一些更改修復了它.我的情況與您的有些不同,因此在討論對我有用的更改之前,我將對其進行描述.

                  I was receiving the same error and, for me, some changes to my TAdoQuery properties fixed it. My situation is somewhat different than yours, so I'll describe it before getting to the changes that worked for me.

                  我有一張相當大的桌子;684,673 行,107 列,數(shù)據(jù)大小為 636240 KB.它有三組重復列,我將把它們標準化為三個新表.查詢?

                  I have a fairly large table; 684,673 rows, 107 columns and a data size of 636240 KB. It has three sets of repeating columns that I'm going to normalize out to three new tables. The query?

                  SELECT * FROM MyTable
                  

                  所以這只是一條直線穿過桌子,只有一個方向.處理不需要任何特定的順序,因此在主鍵之外添加索引將無濟于事.由于我沒有對此表進行任何更改,因此它是一個只讀提議.無需顯示任何內(nèi)容.

                  So this is just a straight run through the table, one direction only. The processing has no need for any particular order, so adding indexes, beyond the primary key, won't help. Since I'm making no changes to this table, it's a read-only proposition. Nothing needs to be displayed.

                  當我只是嘗試將這個表的 TADOQuery.Active 屬性設置為 true 時,我在 Delphi IDE 中收到了錯誤.換句話說,只是嘗試在 IDE 中打開它會引發(fā)錯誤.在我可以在 IDE 中成功打開它之前,檢查我的任何代碼都是沒有意義的.

                  I was receiving the error in the Delphi IDE when I simply tried to set this table's TADOQuery.Active property to true. In other words, just trying to open it in the IDE threw the error. There's no point in examining any of my code before I can successfully open this in the IDE.

                  我對此表的 TADOQuery 進行了以下更改:

                  I made the following changes to this table's TADOQuery:

                  命令超時:600

                  CursorLocation:clUseServer

                  CursorLocation: clUseServer

                  光標類型:ctOpenForwardOnly

                  啟用BCD:

                  鎖定類型:ltReadOnly

                  錯誤不再發(fā)生,無論是在 IDE 中還是在我的處理代碼中.

                  The error no longer happens, either in the IDE or in my processing code.

                  可能只有其中一項更改是必要的.如果是這樣,我不知道是哪個,因為我沒有一次測試它們.我只是做了所有看起來像候選的更改,以便為查詢提供最大的成功機會.

                  It may be that only one of these changes was necessary. If so, I don't know which because I didn't test them one-at-a-time. I simply made all the changes that looked like candidates to give the query the best chance of success.

                  這篇關于“對象已打開"使用 Delphi、SQL Server 和 ADO 時出錯的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關文檔推薦

                  Can I figure out a list of databases and the space used by SQL Server instances without writing SQL queries?(我可以在不編寫 SQL 查詢的情況下找出數(shù)據(jù)庫列表和 SQL Server 實例使用的空間嗎?) - IT屋-程序員軟件開發(fā)
                  How to create a login to a SQL Server instance?(如何創(chuàng)建對 SQL Server 實例的登錄?)
                  How to know the version and edition of SQL Server through registry search(如何通過注冊表搜索知道SQL Server的版本和版本)
                  Why do I get a quot;data type conversion errorquot; with ExecuteNonQuery()?(為什么會出現(xiàn)“數(shù)據(jù)類型轉換錯誤?使用 ExecuteNonQuery()?)
                  How to show an image from a DataGridView to a PictureBox?(如何將 DataGridView 中的圖像顯示到 PictureBox?)
                  WinForms application design - moving documents from SQL Server to file storage(WinForms 應用程序設計——將文檔從 SQL Server 移動到文件存儲)

                  <tfoot id='NqEIu'></tfoot>

                  <small id='NqEIu'></small><noframes id='NqEIu'>

                      <bdo id='NqEIu'></bdo><ul id='NqEIu'></ul>
                        <tbody id='NqEIu'></tbody>

                      1. <legend id='NqEIu'><style id='NqEIu'><dir id='NqEIu'><q id='NqEIu'></q></dir></style></legend>

                          • <i id='NqEIu'><tr id='NqEIu'><dt id='NqEIu'><q id='NqEIu'><span id='NqEIu'><b id='NqEIu'><form id='NqEIu'><ins id='NqEIu'></ins><ul id='NqEIu'></ul><sub id='NqEIu'></sub></form><legend id='NqEIu'></legend><bdo id='NqEIu'><pre id='NqEIu'><center id='NqEIu'></center></pre></bdo></b><th id='NqEIu'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='NqEIu'><tfoot id='NqEIu'></tfoot><dl id='NqEIu'><fieldset id='NqEIu'></fieldset></dl></div>
                            主站蜘蛛池模板: 亚洲成人一区二区三区 | 欧美一级免费看 | 完全免费av在线 | 国产精品永久在线观看 | 久久久不卡网国产精品一区 | 国产精品久久久久久久午夜片 | 欧美一区二区三区在线观看 | 国产精品国产三级国产aⅴ无密码 | 久久另类 | 国内精品视频在线观看 | 国产一区二区三区四区三区四 | 亚洲综合二区 | 天天躁日日躁狠狠很躁 | 国产在线成人 | 国产一区二区三区久久久久久久久 | 有码在线 | 久久国产精品免费一区二区三区 | a网站在线观看 | 日本午夜视频 | 亚洲传媒在线 | 日韩欧美一区二区三区免费观看 | 自拍视频网 | 国产精品久久久久久久久免费高清 | 亚洲 欧美 日韩在线 | 国产免费视频 | 91国在线高清视频 | 四虎影院一区二区 | 成人精品一区二区户外勾搭野战 | 成年人在线观看 | 黄色片大全在线观看 | 欧美一级高潮片免费的 | 精品91视频| 日韩一二三区视频 | 日本天天色| 久久爱黑人激情av摘花 | 超碰地址 | 日韩欧美网 | 国产免费一区二区 | 久久久久国产一区二区三区四区 | 中文字幕蜜臀 | 夜久久 |