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

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

    <legend id='3dbFF'><style id='3dbFF'><dir id='3dbFF'><q id='3dbFF'></q></dir></style></legend>
        <bdo id='3dbFF'></bdo><ul id='3dbFF'></ul>

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

      1. <tfoot id='3dbFF'></tfoot>

        使用 Flex 將表單字段保存在 MySQL 數據庫中

        Saving form fields in a MySQL DB usinf Flex(使用 Flex 將表單字段保存在 MySQL 數據庫中)

        • <tfoot id='AUVHD'></tfoot>
          <legend id='AUVHD'><style id='AUVHD'><dir id='AUVHD'><q id='AUVHD'></q></dir></style></legend>
            <bdo id='AUVHD'></bdo><ul id='AUVHD'></ul>
              <tbody id='AUVHD'></tbody>

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

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

                  本文介紹了使用 Flex 將表單字段保存在 MySQL 數據庫中的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我有一個 MySQL 數據庫,我創建了一個數據庫并將其命名為PERSONDB".在該數據庫中,我創建了一個表并將其命名為 Person.該表有 3 個字段.id,name,age.

                  I have a MySQL database, and i created a DB and named it 'PERSONDB'. Within that DB, i have created a table and named it Person. This table has 3 fields. id,name,age.

                  現在我需要將一些值從我的 flex 網站保存到我創建的 mySQL 'PERSONDB'.

                  Now i need to save some values from my flex website to the mySQL 'PERSONDB' that i created.

                  我如何在 Flex (Flax builder 4.6) 中執行此操作

                  How can i do this in Flex (Flax builder 4.6)

                  注意:我在 Flex 項目中添加了 2 個字段名稱和年齡,當用戶單擊按鈕時,我需要將這些值保存在數據庫中.我該怎么做.

                  Note: I have added 2 fields name and age, in the Flex project and when the user clicks on the Button i need those values to be saved in the DB. how can i do this.

                  推薦答案

                  asSQL ( http://code.google.com/p/assql/ ) 是使用 mySQL 的好方法.它允許從 AIR 或基于 Web 的任何應用程序直接訪問 mySQL.我在編碼中經常使用它,因此我不必編寫 Java 或 PHP 作為后端,除非有充分的理由安裝后端.

                  asSQL ( http://code.google.com/p/assql/ ) is a good approach to using mySQL. It allows for direct access to mySQL from any application either in AIR or web based. I use this pretty regularly in my coding so I don't have to write a Java or PHP as a back end unless there is a good reason to have a back end in place.

                  好的,這是我使用的代碼:

                  OK, here is the code I use:

                      <assql:MySqlService id         ="DB"
                                          hostname   ="localhost"
                                          username   ="user"
                                          password   ="password"
                                          database   ="db"
                                          autoConnect="true"
                                          connect    ="handleConnected(event)"
                                          sqlError   ="handleError(event)"/>
                  
                  
                          private function getSelectedData() : void
                          {
                              DB.send("SELECT * from table WHERE number = '" + number.text + "'");
                          }
                  

                  僅此而已.頂部設置連接,位于代碼部分.其余部分在 (ActionScript) 部分.當然,也可以直接在 ActionScript 中完成,但是這個解決方案使用了 MXML.

                  That's all there is too it. The top part sets up the connection and is in the section of the code. The rest is in the part (ActionScript). Of course, it can be done in straight ActionScript as well, but this solution used MXML.

                  這篇關于使用 Flex 將表單字段保存在 MySQL 數據庫中的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  How to use windowing functions efficiently to decide next N number of rows based on N number of previous values(如何有效地使用窗口函數根據 N 個先前值來決定接下來的 N 個行)
                  reuse the result of a select expression in the quot;GROUP BYquot; clause?(在“GROUP BY中重用選擇表達式的結果;條款?)
                  Does ignore option of Pyspark DataFrameWriter jdbc function ignore entire transaction or just offending rows?(Pyspark DataFrameWriter jdbc 函數的 ignore 選項是忽略整個事務還是只是有問題的行?) - IT屋-程序員軟件開發技
                  Error while using INSERT INTO table ON DUPLICATE KEY, using a for loop array(使用 INSERT INTO table ON DUPLICATE KEY 時出錯,使用 for 循環數組)
                  pyspark mysql jdbc load An error occurred while calling o23.load No suitable driver(pyspark mysql jdbc load 調用 o23.load 時發生錯誤 沒有合適的驅動程序)
                  How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數據庫表作為 Spark 數據幀讀取?)

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

                      <tfoot id='fFxux'></tfoot>

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

                        1. <legend id='fFxux'><style id='fFxux'><dir id='fFxux'><q id='fFxux'></q></dir></style></legend>
                            <tbody id='fFxux'></tbody>
                          • <bdo id='fFxux'></bdo><ul id='fFxux'></ul>
                            主站蜘蛛池模板: 欧美h版| 性色的免费视频 | 久久久久久久国产精品 | 亚洲精品视频三区 | 91香蕉嫩草 | 亚洲免费观看 | 成人午夜精品 | 亚洲精品大片 | 日韩国产在线观看 | 少妇特黄a一区二区三区88av | 日本啊v在线 | 国产精品久久久久久久久久久久久 | 能看的av| 亚洲综合色视频在线观看 | 亚洲成人国产 | 亚洲欧美中文日韩在线v日本 | 金莲网 | 国产一区二区在线播放 | 日本午夜精品 | 日日碰狠狠躁久久躁96avv | 超碰在线人人 | 日本精品久久 | 久久一级免费视频 | 日本三级线观看 视频 | 亚洲 欧美 日韩在线 | 99久久国产综合精品麻豆 | 精品国产乱码久久久久久丨区2区 | 欧美三级免费观看 | 一区二区三区精品视频 | 国产成人99av超碰超爽 | 国产成人精品一区二 | 日韩精品人成在线播放 | 伊人免费视频二 | 337p日韩 | 日本免费一区二区三区 | 亚洲品质自拍视频网站 | 国产a视频| 99福利在线观看 | 一区二区三区在线 | av天天澡天天爽天天av | 日韩一二区在线 |