Bonjour,

Je remerci en avance les personnes qui seront m'orienter ou résoudre mon probleme car j'ai fini mon application et cette erreur me gache la vie ^^.


J'ai un problème que je ne comprend pas alors:

ça s'est ActivityModifer.java

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 
 
// Vérification de la vue cliquée
		if(v == buttonEnvoieRequeteModifClient) 
		{	
 
	        String idCli = ((EditText)findViewById(R.id.editexTidClient)).getText().toString();
			String TContact = ((EditText)findViewById(R.id.editexTtitreContact)).getText().toString();
			String NContact = ((EditText)findViewById(R.id.editexTnomContact)).getText().toString();
			String PContact = ((EditText)findViewById(R.id.editexTprenomContact)).getText().toString();
			String ACli = ((EditText)findViewById(R.id.editexTadrClient)).getText().toString();
			String A2Cli = ((EditText)findViewById(R.id.editexTadr2Client)).getText().toString();
			String VCli = ((EditText)findViewById(R.id.editexTvilleClient)).getText().toString();
			String CPCli = ((EditText)findViewById(R.id.editexTcpClient)).getText().toString();
			String TelCli = ((EditText)findViewById(R.id.editexTtelClient)).getText().toString();
			String Tel2Cli = ((EditText)findViewById(R.id.editexTtel2Client)).getText().toString();
			String ECli = ((EditText)findViewById(R.id.editexTetablissementClient)).getText().toString();
			String SCli = ((EditText)findViewById(R.id.editexTserviceClient)).getText().toString();
			String TyContrat = ((EditText)findViewById(R.id.editexTtypeContrat)).getText().toString();
			String QContrat = ((EditText)findViewById(R.id.editexTquantiteContrat)).getText().toString();
 
 
			dataBaseHelper myDataBase = new dataBaseHelper(context);
 
 
			// Vérifie si la base existe
			try 
			{
				myDataBase.createDataBase();
			} 
			catch (IOException e) 
			{
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
 
			// Ouvre la BDD
			myDataBase.openDataBase();
 
			if (myDataBase.updateClient(idCli, ACli, A2Cli, VCli, CPCli, 
					TelCli, Tel2Cli, ECli, SCli))
			{
				if (myDataBase.updateContact(idCli, TContact, NContact, PContact))
				{
					if (myDataBase.updateContrat(idCli, TyContrat, QContrat))
					{
						Toast.makeText(this, "Update successful.", 
								Toast.LENGTH_LONG).show();
					}
				}	
			}
			else
			{
				Toast.makeText(this, "Update failed.", 
				Toast.LENGTH_LONG).show();
 
			}
 
		}
et mon dataBaseHelper.java

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
 
    // -- Méthode pour t_client -- \\
	private static final String DATABASE_TABLECLIENT = "t_client";
 
	private static final String IDCLIENT = "idClient";
	private static final String ETABLISSEMENTCLIENT = "etablissementClient";
	private static final String SERVICECLIENT = "serviceClient";
	private static final String ADRCLIENT = "adrClient";
	private static final String ADR2CLIENT = "adr2Client";
	private static final String ADRVISIBLESAGE = "adrVisibleSage";
	private static final String CPCLIENT = "cpClient";
	private static final String VILLECLIENT = "villeClient";
	private static final String TELCLIENT = "telClient";
	private static final String TEL2CLIENT = "tel2Client";
	private static final String IDSIRET = "idSiret";
	private static final String IDDISTRIBUTEUR = "idDistributeur";
	private static final String NOTECONTACTCLIENT = "noteContactClient";
	private static final String JOURFERMETURECLIENT = "jourFermetureClient";
	private static final String HORAIREOUVERTURECLIENT = "horaireOuvertureClient";
 
 
 
    // Update Client
    public boolean updateClient(String idCli, String ACLI, 
    								String ADR2CLI, String VILLECLI, String CPCLI, 
    									String TELCLI, String TEL2CLI, String ETABLISSEMENTCLI, 
    										String SERVICECLI)
    {
        ContentValues values = new ContentValues();
 
        values.put(ADRCLIENT, ACLI);
        values.put(ADR2CLIENT, ADR2CLI);
        values.put(VILLECLIENT, VILLECLI);
        values.put(CPCLIENT, CPCLI);
        values.put(TELCLIENT, TELCLI);
        values.put(TEL2CLIENT, TEL2CLI);
        values.put(ETABLISSEMENTCLIENT, ETABLISSEMENTCLI);
        values.put(SERVICECLIENT, SERVICECLI);
 
        return myDataBase.update(DATABASE_TABLECLIENT, values, 
        		IDCLIENT + " = " + idCli, null) > 0;
    }
et voici l'erreur dans le logCat

E/Database(1463): Error updating adrClient=23, rue de la Charronnerie villeClient=ST ARNOULT EN YVELINES etablissementClient=SCM DES REMPARTS cpClient=78730 tel2Client= adr2Client= telClient=01 30 59 95 02 serviceClient=Cabinet dentaire using UPDATE t_client SET adrClient=?, villeClient=?, etablissementClient=?, cpClient=?, tel2Client=?, adr2Client=?, telClient=?, serviceClient=? WHERE idClient = 10095
et j'ai aussi normal Class File Editor me dit:

Source not found avec l'immense message qui suit (je sais pas si ça peut aider):





Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
// Compiled from SQLiteDatabase.java (version 1.5 : 49.0, super bit)
public class android.database.sqlite.SQLiteDatabase extends android.database.sqlite.SQLiteClosable {
 
  // Field descriptor #11 I
  public static final int CONFLICT_ROLLBACK = 1;
 
  // Field descriptor #11 I
  public static final int CONFLICT_ABORT = 2;
 
  // Field descriptor #11 I
  public static final int CONFLICT_FAIL = 3;
 
  // Field descriptor #11 I
  public static final int CONFLICT_IGNORE = 4;
 
  // Field descriptor #11 I
  public static final int CONFLICT_REPLACE = 5;
 
  // Field descriptor #11 I
  public static final int CONFLICT_NONE = 0;
 
  // Field descriptor #11 I
  public static final int SQLITE_MAX_LIKE_PATTERN_LENGTH = 50000;
 
  // Field descriptor #11 I
  public static final int OPEN_READWRITE = 0;
 
  // Field descriptor #11 I
  public static final int OPEN_READONLY = 1;
 
  // Field descriptor #11 I
  public static final int NO_LOCALIZED_COLLATORS = 16;
 
  // Field descriptor #11 I
  public static final int CREATE_IF_NECESSARY = 268435456;
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  SQLiteDatabase();
     0  aload_0 [this]
     1  invokespecial android.database.sqlite.SQLiteClosable() [1]
     4  new java.lang.RuntimeException [2]
     7  dup
     8  ldc <String "Stub!"> [3]
    10  invokespecial java.lang.RuntimeException(java.lang.String) [4]
    13  athrow
      Line numbers:
        [pc: 0, line: 9]
      Local variable table:
        [pc: 0, pc: 14] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  protected void onAllReferencesReleased();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 10]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #41 ()I
  public static native int releaseMemory();
 
  // Method descriptor #43 (Z)V
  // Stack: 3, Locals: 2
  public void setLockingEnabled(boolean lockingEnabled);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 12]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: lockingEnabled index: 1 type: boolean
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  public void beginTransaction();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 13]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #48 (Landroid/database/sqlite/SQLiteTransactionListener;)V
  // Stack: 3, Locals: 2
  public void beginTransactionWithListener(android.database.sqlite.SQLiteTransactionListener transactionListener);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 14]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: transactionListener index: 1 type: android.database.sqlite.SQLiteTransactionListener
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  public void endTransaction();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 15]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  public void setTransactionSuccessful();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 16]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean inTransaction();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 17]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean isDbLockedByCurrentThread();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 18]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean isDbLockedByOtherThreads();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 19]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean yieldIfContended();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 20]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean yieldIfContendedSafely();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 21]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #59 (J)Z
  // Stack: 3, Locals: 3
  public boolean yieldIfContendedSafely(long sleepAfterYieldDelay);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 22]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: sleepAfterYieldDelay index: 1 type: long
 
  // Method descriptor #63 ()Ljava/util/Map;
  // Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
  // Stack: 3, Locals: 1
  public java.util.Map getSyncedTables();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 23]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #67 (Ljava/lang/String;Landroid/database/sqlite/SQLiteDatabase$CursorFactory;I)Landroid/database/sqlite/SQLiteDatabase;
  // Stack: 3, Locals: 3
  public static android.database.sqlite.SQLiteDatabase openDatabase(java.lang.String path, android.database.sqlite.SQLiteDatabase.CursorFactory factory, int flags);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 24]
      Local variable table:
        [pc: 0, pc: 10] local: path index: 0 type: java.lang.String
        [pc: 0, pc: 10] local: factory index: 1 type: android.database.sqlite.SQLiteDatabase.CursorFactory
        [pc: 0, pc: 10] local: flags index: 2 type: int
 
  // Method descriptor #74 (Ljava/io/File;Landroid/database/sqlite/SQLiteDatabase$CursorFactory;)Landroid/database/sqlite/SQLiteDatabase;
  // Stack: 3, Locals: 2
  public static android.database.sqlite.SQLiteDatabase openOrCreateDatabase(java.io.File file, android.database.sqlite.SQLiteDatabase.CursorFactory factory);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 25]
      Local variable table:
        [pc: 0, pc: 10] local: file index: 0 type: java.io.File
        [pc: 0, pc: 10] local: factory index: 1 type: android.database.sqlite.SQLiteDatabase.CursorFactory
 
  // Method descriptor #77 (Ljava/lang/String;Landroid/database/sqlite/SQLiteDatabase$CursorFactory;)Landroid/database/sqlite/SQLiteDatabase;
  // Stack: 3, Locals: 2
  public static android.database.sqlite.SQLiteDatabase openOrCreateDatabase(java.lang.String path, android.database.sqlite.SQLiteDatabase.CursorFactory factory);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 26]
      Local variable table:
        [pc: 0, pc: 10] local: path index: 0 type: java.lang.String
        [pc: 0, pc: 10] local: factory index: 1 type: android.database.sqlite.SQLiteDatabase.CursorFactory
 
  // Method descriptor #79 (Landroid/database/sqlite/SQLiteDatabase$CursorFactory;)Landroid/database/sqlite/SQLiteDatabase;
  // Stack: 3, Locals: 1
  public static android.database.sqlite.SQLiteDatabase create(android.database.sqlite.SQLiteDatabase.CursorFactory factory);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 27]
      Local variable table:
        [pc: 0, pc: 10] local: factory index: 0 type: android.database.sqlite.SQLiteDatabase.CursorFactory
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  public void close();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 28]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #41 ()I
  // Stack: 3, Locals: 1
  public int getVersion();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 29]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #83 (I)V
  // Stack: 3, Locals: 2
  public void setVersion(int version);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 30]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: version index: 1 type: int
 
  // Method descriptor #86 ()J
  // Stack: 3, Locals: 1
  public long getMaximumSize();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 31]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #88 (J)J
  // Stack: 3, Locals: 3
  public long setMaximumSize(long numBytes);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 32]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: numBytes index: 1 type: long
 
  // Method descriptor #86 ()J
  // Stack: 3, Locals: 1
  public long getPageSize();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 33]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #92 (J)V
  // Stack: 3, Locals: 3
  public void setPageSize(long numBytes);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 34]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: numBytes index: 1 type: long
 
  // Method descriptor #94 (Ljava/lang/String;Ljava/lang/String;)V
  // Stack: 3, Locals: 3
  public void markTableSyncable(java.lang.String table, java.lang.String deletedTable);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 35]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: deletedTable index: 2 type: java.lang.String
 
  // Method descriptor #97 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
  // Stack: 3, Locals: 4
  public void markTableSyncable(java.lang.String table, java.lang.String foreignKey, java.lang.String updateTable);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 36]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: foreignKey index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: updateTable index: 3 type: java.lang.String
 
  // Method descriptor #101 (Ljava/lang/String;)Ljava/lang/String;
  // Stack: 3, Locals: 1
  public static java.lang.String findEditTable(java.lang.String tables);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 37]
      Local variable table:
        [pc: 0, pc: 10] local: tables index: 0 type: java.lang.String
 
  // Method descriptor #104 (Ljava/lang/String;)Landroid/database/sqlite/SQLiteStatement;
  // Stack: 3, Locals: 2
  public android.database.sqlite.SQLiteStatement compileStatement(java.lang.String sql) throws android.database.SQLException;
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 38]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: sql index: 1 type: java.lang.String
 
  // Method descriptor #109 (ZLjava/lang/String;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
  // Stack: 3, Locals: 10
  public android.database.Cursor query(boolean distinct, java.lang.String table, java.lang.String[] columns, java.lang.String selection, java.lang.String[] selectionArgs, java.lang.String groupBy, java.lang.String having, java.lang.String orderBy, java.lang.String limit);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 39]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: distinct index: 1 type: boolean
        [pc: 0, pc: 10] local: table index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: columns index: 3 type: java.lang.String[]
        [pc: 0, pc: 10] local: selection index: 4 type: java.lang.String
        [pc: 0, pc: 10] local: selectionArgs index: 5 type: java.lang.String[]
        [pc: 0, pc: 10] local: groupBy index: 6 type: java.lang.String
        [pc: 0, pc: 10] local: having index: 7 type: java.lang.String
        [pc: 0, pc: 10] local: orderBy index: 8 type: java.lang.String
        [pc: 0, pc: 10] local: limit index: 9 type: java.lang.String
 
  // Method descriptor #120 (Landroid/database/sqlite/SQLiteDatabase$CursorFactory;ZLjava/lang/String;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
  // Stack: 3, Locals: 11
  public android.database.Cursor queryWithFactory(android.database.sqlite.SQLiteDatabase.CursorFactory cursorFactory, boolean distinct, java.lang.String table, java.lang.String[] columns, java.lang.String selection, java.lang.String[] selectionArgs, java.lang.String groupBy, java.lang.String having, java.lang.String orderBy, java.lang.String limit);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 40]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: cursorFactory index: 1 type: android.database.sqlite.SQLiteDatabase.CursorFactory
        [pc: 0, pc: 10] local: distinct index: 2 type: boolean
        [pc: 0, pc: 10] local: table index: 3 type: java.lang.String
        [pc: 0, pc: 10] local: columns index: 4 type: java.lang.String[]
        [pc: 0, pc: 10] local: selection index: 5 type: java.lang.String
        [pc: 0, pc: 10] local: selectionArgs index: 6 type: java.lang.String[]
        [pc: 0, pc: 10] local: groupBy index: 7 type: java.lang.String
        [pc: 0, pc: 10] local: having index: 8 type: java.lang.String
        [pc: 0, pc: 10] local: orderBy index: 9 type: java.lang.String
        [pc: 0, pc: 10] local: limit index: 10 type: java.lang.String
 
  // Method descriptor #122 (Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
  // Stack: 3, Locals: 8
  public android.database.Cursor query(java.lang.String table, java.lang.String[] columns, java.lang.String selection, java.lang.String[] selectionArgs, java.lang.String groupBy, java.lang.String having, java.lang.String orderBy);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 41]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: columns index: 2 type: java.lang.String[]
        [pc: 0, pc: 10] local: selection index: 3 type: java.lang.String
        [pc: 0, pc: 10] local: selectionArgs index: 4 type: java.lang.String[]
        [pc: 0, pc: 10] local: groupBy index: 5 type: java.lang.String
        [pc: 0, pc: 10] local: having index: 6 type: java.lang.String
        [pc: 0, pc: 10] local: orderBy index: 7 type: java.lang.String
 
  // Method descriptor #123 (Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
  // Stack: 3, Locals: 9
  public android.database.Cursor query(java.lang.String table, java.lang.String[] columns, java.lang.String selection, java.lang.String[] selectionArgs, java.lang.String groupBy, java.lang.String having, java.lang.String orderBy, java.lang.String limit);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 42]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: columns index: 2 type: java.lang.String[]
        [pc: 0, pc: 10] local: selection index: 3 type: java.lang.String
        [pc: 0, pc: 10] local: selectionArgs index: 4 type: java.lang.String[]
        [pc: 0, pc: 10] local: groupBy index: 5 type: java.lang.String
        [pc: 0, pc: 10] local: having index: 6 type: java.lang.String
        [pc: 0, pc: 10] local: orderBy index: 7 type: java.lang.String
        [pc: 0, pc: 10] local: limit index: 8 type: java.lang.String
 
  // Method descriptor #125 (Ljava/lang/String;[Ljava/lang/String;)Landroid/database/Cursor;
  // Stack: 3, Locals: 3
  public android.database.Cursor rawQuery(java.lang.String sql, java.lang.String[] selectionArgs);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 43]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: sql index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: selectionArgs index: 2 type: java.lang.String[]
 
  // Method descriptor #127 (Landroid/database/sqlite/SQLiteDatabase$CursorFactory;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
  // Stack: 3, Locals: 5
  public android.database.Cursor rawQueryWithFactory(android.database.sqlite.SQLiteDatabase.CursorFactory cursorFactory, java.lang.String sql, java.lang.String[] selectionArgs, java.lang.String editTable);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 44]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: cursorFactory index: 1 type: android.database.sqlite.SQLiteDatabase.CursorFactory
        [pc: 0, pc: 10] local: sql index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: selectionArgs index: 3 type: java.lang.String[]
        [pc: 0, pc: 10] local: editTable index: 4 type: java.lang.String
 
  // Method descriptor #130 (Ljava/lang/String;Ljava/lang/String;Landroid/content/ContentValues;)J
  // Stack: 3, Locals: 4
  public long insert(java.lang.String table, java.lang.String nullColumnHack, android.content.ContentValues values);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 45]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: nullColumnHack index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: values index: 3 type: android.content.ContentValues
 
  // Method descriptor #130 (Ljava/lang/String;Ljava/lang/String;Landroid/content/ContentValues;)J
  // Stack: 3, Locals: 4
  public long insertOrThrow(java.lang.String table, java.lang.String nullColumnHack, android.content.ContentValues values) throws android.database.SQLException;
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 46]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: nullColumnHack index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: values index: 3 type: android.content.ContentValues
 
  // Method descriptor #130 (Ljava/lang/String;Ljava/lang/String;Landroid/content/ContentValues;)J
  // Stack: 3, Locals: 4
  public long replace(java.lang.String table, java.lang.String nullColumnHack, android.content.ContentValues initialValues);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 47]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: nullColumnHack index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: initialValues index: 3 type: android.content.ContentValues
 
  // Method descriptor #130 (Ljava/lang/String;Ljava/lang/String;Landroid/content/ContentValues;)J
  // Stack: 3, Locals: 4
  public long replaceOrThrow(java.lang.String table, java.lang.String nullColumnHack, android.content.ContentValues initialValues) throws android.database.SQLException;
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 48]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: nullColumnHack index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: initialValues index: 3 type: android.content.ContentValues
 
  // Method descriptor #139 (Ljava/lang/String;Ljava/lang/String;Landroid/content/ContentValues;I)J
  // Stack: 3, Locals: 5
  public long insertWithOnConflict(java.lang.String table, java.lang.String nullColumnHack, android.content.ContentValues initialValues, int conflictAlgorithm);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 49]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: nullColumnHack index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: initialValues index: 3 type: android.content.ContentValues
        [pc: 0, pc: 10] local: conflictAlgorithm index: 4 type: int
 
  // Method descriptor #142 (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)I
  // Stack: 3, Locals: 4
  public int delete(java.lang.String table, java.lang.String whereClause, java.lang.String[] whereArgs);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 50]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: whereClause index: 2 type: java.lang.String
        [pc: 0, pc: 10] local: whereArgs index: 3 type: java.lang.String[]
 
  // Method descriptor #146 (Ljava/lang/String;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;)I
  // Stack: 3, Locals: 5
  public int update(java.lang.String table, android.content.ContentValues values, java.lang.String whereClause, java.lang.String[] whereArgs);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 51]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: values index: 2 type: android.content.ContentValues
        [pc: 0, pc: 10] local: whereClause index: 3 type: java.lang.String
        [pc: 0, pc: 10] local: whereArgs index: 4 type: java.lang.String[]
 
  // Method descriptor #148 (Ljava/lang/String;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;I)I
  // Stack: 3, Locals: 6
  public int updateWithOnConflict(java.lang.String table, android.content.ContentValues values, java.lang.String whereClause, java.lang.String[] whereArgs, int conflictAlgorithm);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 52]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: table index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: values index: 2 type: android.content.ContentValues
        [pc: 0, pc: 10] local: whereClause index: 3 type: java.lang.String
        [pc: 0, pc: 10] local: whereArgs index: 4 type: java.lang.String[]
        [pc: 0, pc: 10] local: conflictAlgorithm index: 5 type: int
 
  // Method descriptor #150 (Ljava/lang/String;)V
  // Stack: 3, Locals: 2
  public void execSQL(java.lang.String sql) throws android.database.SQLException;
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 53]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: sql index: 1 type: java.lang.String
 
  // Method descriptor #151 (Ljava/lang/String;[Ljava/lang/Object;)V
  // Stack: 3, Locals: 3
  public void execSQL(java.lang.String sql, java.lang.Object[] bindArgs) throws android.database.SQLException;
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 54]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: sql index: 1 type: java.lang.String
        [pc: 0, pc: 10] local: bindArgs index: 2 type: java.lang.Object[]
 
  // Method descriptor #33 ()V
  // Stack: 3, Locals: 1
  protected void finalize();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 55]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean isReadOnly();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 56]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #54 ()Z
  // Stack: 3, Locals: 1
  public boolean isOpen();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 57]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #158 (I)Z
  // Stack: 3, Locals: 2
  public boolean needUpgrade(int newVersion);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 58]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: newVersion index: 1 type: int
 
  // Method descriptor #161 ()Ljava/lang/String;
  // Stack: 3, Locals: 1
  public final java.lang.String getPath();
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 59]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
 
  // Method descriptor #163 (Ljava/util/Locale;)V
  // Stack: 3, Locals: 2
  public void setLocale(java.util.Locale locale);
     0  new java.lang.RuntimeException [2]
     3  dup
     4  ldc <String "Stub!"> [3]
     6  invokespecial java.lang.RuntimeException(java.lang.String) [4]
     9  athrow
      Line numbers:
        [pc: 0, line: 60]
      Local variable table:
        [pc: 0, pc: 10] local: this index: 0 type: android.database.sqlite.SQLiteDatabase
        [pc: 0, pc: 10] local: locale index: 1 type: java.util.Locale
 
  Inner classes:
    [inner class info: #7 android/database/sqlite/SQLiteDatabase$CursorFactory, outer class info: #5 android/database/sqlite/SQLiteDatabase
     inner name: #8 CursorFactory, accessflags: 1545 public abstract static]
}