bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Android中怎么批量插入數據

本篇文章為大家展示了Android中怎么批量插入數據,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

成都創新互聯公司是一家專業提供承德縣企業網站建設,專注與網站設計制作、成都網站建設、H5技術、小程序制作等業務。10年已為承德縣眾多企業、政府機構等服務。創新互聯專業網站建設公司優惠進行中。

Android中在sqlite插入數據的時候默認一條語句就是一個事務(All   individual SQL Statements, (with rare exceptions like Bulk Inserts with  No Log, or Truncate Table) are automaticaly "In a Transaction" whether  you explicitly say so or not.. (even if they insert, update, or delete  millions of rows).),因此如果存在上萬條數據插入的話,那就需要執行上萬次插入操作,操作速度可想而知。因此在Android中插入數據時,使用批量插入的方式可以大大提高插入速度。

批量插入的模板如下:

public void inertOrUpdateDateBatch(List<String> sqls) {           SQLiteDatabase db = getWritableDatabase();           db.beginTransaction();           try {               for (String sql : sqls) {                   db.execSQL(sql);               }               // 設置事務標志為成功,當結束事務時就會提交事務               db.setTransactionSuccessful();           } catch (Exception e) {               e.printStackTrace();           } finally {               // 結束事務               db.endTransaction();               db.close();           }       }

注意此處的:

db.execSQL(sql);

官方的API顯示:

public void execSQL (String sql)

Added in API level 1

Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.

It has no means to return any data (such as the number of affected rows). Instead, you're encouraged to use insert(String,  String, ContentValues)update(String,  ContentValues, String, String[]), et al, when possible.

When using enableWriteAheadLogging(),  journal_mode is automatically managed by this class. So, do not set  journal_mode using "PRAGMA journal_mode'" statement if your app is  using enableWriteAheadLogging()

Parameters
sqlthe SQL statement to be executed. Multiple statements separated by semicolons are not supported.
Throws
SQLExceptionif the SQL string is invalid

說明,每次執行SQL只能有一條語句。在執行的時候,不能寫成:

insert into student values('yang','boy');insert into student values('zhou','girl');

上述內容就是Android中怎么批量插入數據,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創新互聯行業資訊頻道。

名稱欄目:Android中怎么批量插入數據
URL網址:http://vcdvsql.cn/article32/gjgppc.html

成都網站建設公司_創新互聯,為您提供網站設計小程序開發網站策劃用戶體驗定制網站網站導航

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

小程序開發