sqlite 데이터 베 이 스 는 빅 데 이 터 를 삽입 할 때 사무 처 리 를 사용 하면 삽입 시간 이 1 만 개의 데 이 터 를 3 초 동안 삽입 하 는 것 을 크게 줄 일 수 있 습 니 다.
1992 단어 sqlite
//str3 json
if (str3 != null) {
// SQlite ,
db = dbhelper.getWritableDatabase();
// 。
db.beginTransaction();
// json List
tcc58Arr = JSON.parseArray(str3,
TCC58Paste.class);
try {
for (int i = 0; i < tcc58Arr.size(); i++) {
// List TCC58Paste
TCC58Paste t_cc58Paste=tcc58Arr.get(i);
//
db.execSQL(
"insert into t_cc58manage(cc58_no, goods_info_id, upper_cc55_no , cc_past_date, "
+
"cc58_father_no, is_father, cc_status, trace_description, cc_error, sys_kbn, "
+
"company_id, store_id, terminal_id, charger_id, send_date, ins_user, ins_charger, "
+
"ins_date, upd_user, upt_charger, upd_date) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?);",
// 18/18
new Object[] { t_cc58Paste.getCc58NO(),
t_cc58Paste.getGoodsInfoId(),
t_cc58Paste.getUpperCc55No(),
t_cc58Paste.getCcPastDate(),
t_cc58Paste.getCc58_father_no(),
t_cc58Paste.getIs_father(), t_cc58Paste.getCcStatus(),
t_cc58Paste.getTraceDescription(),
t_cc58Paste.getCcError(), t_cc58Paste.getSysKbn(),
t_cc58Paste.getCompanyId(), t_cc58Paste.getStoreId(),
t_cc58Paste.getTerminalId(),
t_cc58Paste.getChargerId(), t_cc58Paste.getSendDate(),
t_cc58Paste.getInsUser(), t_cc58Paste.getInsCharger(),
t_cc58Paste.getInsDate(), t_cc58Paste.getUpdUser(),
t_cc58Paste.getUptCharger(), t_cc58Paste.getUpdDate() });
}
//
db.setTransactionSuccessful();
}finally {
// TODO Auto-generated catch block
//
db.endTransaction();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
트리거로 재고 관리 for SQLite3SQLite3 트리거를 사용하여 인벤토리 증감 로직 만들기 SQLite 버전 3.35.5. DB Browser for SQLite, 버전 3.12.2 에서 시도했습니다. 트리거 사양 전표 데이터가 추가되면 상품 테이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.