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

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

      <tfoot id='NH7x0'></tfoot>

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

      1. <legend id='NH7x0'><style id='NH7x0'><dir id='NH7x0'><q id='NH7x0'></q></dir></style></legend>
      2. 使用 ADO 和 VBScript 在 SQLite 中存儲(chǔ)和檢索大字符串

        storing and retrieving large strings in SQLite with ADO and VBScript(使用 ADO 和 VBScript 在 SQLite 中存儲(chǔ)和檢索大字符串)
        1. <tfoot id='GUS1K'></tfoot>
            <bdo id='GUS1K'></bdo><ul id='GUS1K'></ul>

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

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

                  本文介紹了使用 ADO 和 VBScript 在 SQLite 中存儲(chǔ)和檢索大字符串的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  限時(shí)送ChatGPT賬號(hào)..

                  我正在使用 VBscript、ADO 和 SQLite ODBC 驅(qū)動(dòng)程序來存儲(chǔ)和檢索大字符串 (~5KB).存儲(chǔ)它們工作正常,也許是因?yàn)槲夷軌蛟诮壎?insert 語句的參數(shù)時(shí)指定大小.然而,當(dāng)我嘗試檢索這些字符串時(shí),我正確地獲得了前 256 個(gè)(或 255 個(gè))字符,但其余接縫來自隨機(jī)內(nèi)存區(qū)域.我做錯(cuò)了什么(除了使用 VBscript 和 ADO...)?

                  I am using VBscript, ADO and the SQLite ODBC driver to store and retrieve large strings (~5KB). Storing them works fine, maybe because I am able to specify a size while I bind the parameters of the insert statement. When I try to retrieve those strings, however, I correctly get the first 256 (or 255) characters but the rest seams to come from a random memory area. What am I doing wrong (besides using VBscript and ADO...)?

                  我愿意將文本存儲(chǔ)為二進(jìn)制數(shù)據(jù).但是我嘗試過的功能(稍后檢索它)不起作用.

                  I'm open to the idea of storing the text as binary data. But the functions I tried, to retrieve it later, didn't work.

                  推薦答案

                  getChunk 不適用于 msdn 上指出的記錄字段,字段屬性 adFldLong 還說明是否可以在該字段上使用 getChunk.在某些字段中,您必須使用 SQL 查詢來檢索數(shù)據(jù)的長度,而不是使用屬性 actualSize

                  getChunk will not work on a record field as noted on msdn, also the field attribute adFldLong states if getChunk can be used on that field. In some fields you must use the SQL query to retrieve the length of data instead of using attribute actualSize

                  這里有一個(gè)很好的例子 http://kek.ksu.ru/eos/ecommerce/masteringasp/18-06.html

                  there is a good example e here http://kek.ksu.ru/eos/ecommerce/masteringasp/18-06.html

                  這篇關(guān)于使用 ADO 和 VBScript 在 SQLite 中存儲(chǔ)和檢索大字符串的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關(guān)文檔推薦

                  Update Record in Sqlite Window Phone 8(Sqlite Window Phone 8 中的更新記錄)
                  Build SQLite for windows phone 8(為 Windows Phone 8 構(gòu)建 SQLite)
                  SQLite 3.8.2 exception on Update statement(更新語句上的 SQLite 3.8.2 異常)
                  How to create database and table in sqlite programatically using monotouch?(如何使用monotouch以編程方式在sqlite中創(chuàng)建數(shù)據(jù)庫和表?)
                  Xamarin SQLite quot;This is the #39;bait#39;quot;(Xamarin SQLite“這是‘誘餌’)
                  How do I use the ngCordova sqlite service and the Cordova-SQLitePlugin with Ionic Framework?(如何在 Ionic 框架中使用 ngCordova s??qlite 服務(wù)和 Cordova-SQLitePlugin?)
                1. <small id='ivrfF'></small><noframes id='ivrfF'>

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

                              <tbody id='ivrfF'></tbody>

                            <legend id='ivrfF'><style id='ivrfF'><dir id='ivrfF'><q id='ivrfF'></q></dir></style></legend>
                            主站蜘蛛池模板: 久久99精品久久久久久 | 中文字幕av在线 | 日本三级网址 | 性色的免费视频 | 国产精品久久久久久影视 | 欧美日韩综合一区 | 日韩综合| 精品综合久久久 | 黄色一级大片在线免费看产 | 精品视频成人 | 欧美视频一区二区三区 | 国产高清视频在线观看 | 国产在线视频在线观看 | 国产欧美一区二区三区在线播放 | 天啪| 欧美在线a | 午夜精品久久 | 欧美一区二区在线观看 | av免费网站在线观看 | 天啪| 亚洲国产中文在线 | 性网址| 99久久国产综合精品麻豆 | 久久久久久亚洲精品 | 精品国产久| 伊人狠狠干 | 天天色综网 | 91看片在线观看 | 视频在线观看一区二区 | 七七婷婷婷婷精品国产 | 欧美精品一区二区三区四区 | 性一爱一乱一交一视频 | 中文字字幕一区二区三区四区五区 | 国产精品久久久久久久免费大片 | 九九99九九精彩46 | 亚洲精品日日夜夜 | 亚洲欧洲成人 | 成年人国产在线观看 | 国产1区2区 | 国产美女久久久 | 久久精品久久久久久 |