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

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

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

    • <bdo id='aLHgg'></bdo><ul id='aLHgg'></ul>
    <legend id='aLHgg'><style id='aLHgg'><dir id='aLHgg'><q id='aLHgg'></q></dir></style></legend>

        SQLite 和 Flex

        SQLite and Flex(SQLite 和 Flex)
        <i id='mCOtL'><tr id='mCOtL'><dt id='mCOtL'><q id='mCOtL'><span id='mCOtL'><b id='mCOtL'><form id='mCOtL'><ins id='mCOtL'></ins><ul id='mCOtL'></ul><sub id='mCOtL'></sub></form><legend id='mCOtL'></legend><bdo id='mCOtL'><pre id='mCOtL'><center id='mCOtL'></center></pre></bdo></b><th id='mCOtL'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='mCOtL'><tfoot id='mCOtL'></tfoot><dl id='mCOtL'><fieldset id='mCOtL'></fieldset></dl></div>

          • <bdo id='mCOtL'></bdo><ul id='mCOtL'></ul>
            1. <small id='mCOtL'></small><noframes id='mCOtL'>

              <legend id='mCOtL'><style id='mCOtL'><dir id='mCOtL'><q id='mCOtL'></q></dir></style></legend>

                    <tbody id='mCOtL'></tbody>
                  <tfoot id='mCOtL'></tfoot>

                • 本文介紹了SQLite 和 Flex的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我正在開發(fā)一個 GPS 計算器,它使用大量數(shù)據(jù)來計算不同的值,例如 RMSE(均方根誤差)和 NSSDA(空間數(shù)據(jù)的國家標(biāo)準(zhǔn)).數(shù)據(jù)來自各種不同型號的 GPS 單元,差異很大,即內(nèi)部/外部天線;自動、WAAS、DGPS、PPS 信號;開放式、輕型、中型、重型機蓋;等等.基本上需要存儲大量數(shù)據(jù)來計算各種各樣的期望結(jié)果.

                  I am developing a GPS calculator that uses a lot of data to calculate different values, such as RMSE (root mean square error) and NSSDA (national standard for spatial data). The data is from a variety of different models of GPS units with a great degree in variation, i.e. internal/external antennae; auto, WAAS, DGPS, PPS signal; open, light, medium, heavy canopy; etc. Basically a whole lot of data needs to be stored to compute the huge variety of desired outcomes.

                  數(shù)據(jù)將始終被讀取,只有在極少數(shù)情況下才會添加新數(shù)據(jù).如果確實需要添加,則很可能是其中一位開發(fā)人員,而不是該程序的用戶.因此,我們對使用 SQLite 非常感興趣.我們的服務(wù)器上有 Oracle,但任何表的創(chuàng)建都必須由上級完成,有時可能需要數(shù)周時間.出于這個原因,SQLite 似乎對我們有用.我從未使用過 SQLite,所以我想知道它是否是正確的選擇.但是,大多數(shù)關(guān)于 SQLite 和 Flex 的文檔似乎都與作為本地數(shù)據(jù)庫的 AIR 應(yīng)用程序和 SQLite 有關(guān).服務(wù)器上的 SQLite 文件與執(zhí)行所需計算的 flex 應(yīng)用程序甚至可以工作嗎?還是我在使用 SQLite 文件方面做得不夠好?

                  The data will always be read, and only in rare conditions will new data be added. If it does need to be added, it will most likely be by one of the developers, not users of the program. Because of this, we are very interested in using SQLite. We have Oracle on our server, but any creation of tables must be done by higher-ups, which can sometimes take weeks. For this reason SQLite seems like it might work for us. I have never used SQLite, so I am wondering if it is the right choice. However, most documentation about SQLite and Flex seems to be pertaining to AIR applications and SQLite as a local database. Would having an SQLite file on the server with a flex application performing the desired calculations even work? Or am I way off the mark on the use of SQLite files?

                  推薦答案

                  我喜歡 sqlLITE,但我只將它與 Perl 一起使用.

                  I love sqlLITE but I have only used it with Perl.

                  您可以使用 Amazon 的 SimpleDB 之類的東西,它是一個可以作為網(wǎng)絡(luò)服務(wù)訪問的數(shù)據(jù)庫.如果您的數(shù)據(jù)少于 1GB,并且每月使用時間少于 25 小時,它也是免費的.

                  You could use something like Amazon's SimpleDB which is a database that can be accessed as a webService. It's also free if you have less than 1GB of data and use it less than 25 hours a month.

                  鏈接到 simpleDBhttp://aws.amazon.com/simpledb/

                  Link to simpleDB http://aws.amazon.com/simpledb/

                  有一個用于 simpleDB 的 AS3 庫,但我沒有擁有多個鏈接的聲譽:-(.. 所以谷歌:亞馬遜圖解生活 simpleDB"

                  There is an AS3 library for simpleDB but I don't have the reputation to have more than one link :-(.. So google: "Amazon illustratedlife simpleDB"

                  祝你好運

                  這篇關(guān)于SQLite 和 Flex的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關(guān)文檔推薦

                  How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數(shù)據(jù)庫表作為 Spark 數(shù)據(jù)幀讀取?)
                  Connect to SQLite in Apache Spark(在 Apache Spark 中連接到 SQLite)
                  How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數(shù)據(jù)庫表作為 Spark 數(shù)據(jù)幀讀取?)
                  group concat equivalent in pig?(豬中的組串聯(lián)等價物?)
                  A way to read table data from Mysql to Pig(一種從Mysql讀取表數(shù)據(jù)到Pig的方法)
                  Apache Nifi How to load JSON with nested array JSON and Call Oracle Stored Procedure(Apache Nifi 如何使用嵌套數(shù)組 JSON 加載 JSON 并調(diào)用 Oracle 存儲過程)
                      <tbody id='MhPO2'></tbody>

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

                    • <legend id='MhPO2'><style id='MhPO2'><dir id='MhPO2'><q id='MhPO2'></q></dir></style></legend>

                          <bdo id='MhPO2'></bdo><ul id='MhPO2'></ul>

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

                            <tfoot id='MhPO2'></tfoot>
                          • 主站蜘蛛池模板: 激情网站在线观看 | 国产福利在线播放麻豆 | 欧美成人免费在线视频 | 偷拍自拍第一页 | 国产精品成人在线 | 99精品一区二区 | 97视频在线观看网站 | 免费性视频 | 在线观看国产视频 | 综合久久综合久久 | 国产精品一区二区av | 久久丝袜 | 国产精品一区二区久久 | 欧美性生交大片免费 | 国产区在线看 | www.久久久久久久久久久久 | 91精品国产91久久久久游泳池 | 老外几下就让我高潮了 | 成人三级在线观看 | 欧美日韩一区二区在线 | 国产亚洲成av人在线观看导航 | 一区二区三区免费在线观看 | 91视频网址 | av中文字幕在线播放 | h视频在线观看免费 | 欧美性久久久 | 久久精品视频网站 | 国产精品爱久久久久久久 | 日韩欧美视频在线 | 国产成人精品一区二 | 欧美激情一区二区三区 | 成人午夜在线观看 | 在线观看中文视频 | 99久久中文字幕三级久久日本 | 国产精品久久久久久久岛一牛影视 | 狠狠操天天干 | 羞羞视频网站免费看 | 久久三区 | 久久毛片 | 黄色一级视频免费 | 欧美日韩国产不卡 |