Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add modified version of DatabaseGeneralTest.java from the sqlite-android project. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d03685fdba7530359f39c9921901d198 |
User & Date: | dan 2017-11-23 19:13:13.376 |
Context
2017-11-27
| ||
14:14 | Remove class org.sqlite.database.ExtraUtils. No longer required now that org.sqlite.database.DatabaseUtils works. (check-in: 2332e2eecd user: dan tags: trunk) | |
2017-11-23
| ||
19:13 | Add modified version of DatabaseGeneralTest.java from the sqlite-android project. (check-in: d03685fdba user: dan tags: trunk) | |
16:21 | Update the imported test cases so that they pass. (check-in: f0e9c4d2ad user: dan tags: trunk) | |
Changes
Added sqlite3/src/androidTest/java/org/sqlite/database/sqlite_android/DatabaseGeneralTest.java.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 | /* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // modified from original source see README at the top level of this project package org.sqlite.database.sqlite_android; import android.content.ContentValues; import android.content.Context; import android.database.CharArrayBuffer; import android.database.Cursor; import android.database.DatabaseUtils; import android.database.sqlite.SQLiteException; import android.os.Parcel; import android.test.AndroidTestCase; import android.test.PerformanceTestCase; import android.test.suitebuilder.annotation.LargeTest; import android.test.suitebuilder.annotation.MediumTest; import android.test.suitebuilder.annotation.SmallTest; import android.test.suitebuilder.annotation.Suppress; import android.util.Log; import android.util.Pair; import org.sqlite.database.sqlite.SQLiteDatabase; import org.sqlite.database.sqlite.SQLiteStatement; import org.sqlite.database.DefaultDatabaseErrorHandler; import junit.framework.Assert; import java.io.File; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Locale; @SuppressWarnings({"deprecated", "ResultOfMethodCallIgnored"}) public class DatabaseGeneralTest extends AndroidTestCase implements PerformanceTestCase { private static final String TAG = "DatabaseGeneralTest"; private static final String sString1 = "this is a test"; private static final String sString2 = "and yet another test"; private static final String sString3 = "this string is a little longer, but still a test"; private static final String PHONE_NUMBER = "16175551212"; private static final int CURRENT_DATABASE_VERSION = 42; private SQLiteDatabase mDatabase; private File mDatabaseFile; @Override protected void setUp() throws Exception { super.setUp(); System.loadLibrary("sqliteX"); File dbDir = getContext().getDir(this.getClass().getName(), Context.MODE_PRIVATE); mDatabaseFile = new File(dbDir, "database_test.db"); if (mDatabaseFile.exists()) { mDatabaseFile.delete(); } mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null); assertNotNull(mDatabase); mDatabase.setVersion(CURRENT_DATABASE_VERSION); } @Override protected void tearDown() throws Exception { mDatabase.close(); mDatabaseFile.delete(); super.tearDown(); } public boolean isPerformanceOnly() { return false; } // These test can only be run once. public int startPerformance(Intermediates intermediates) { return 1; } private void populateDefaultTable() { mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, data TEXT);"); mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString1 + "');"); mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString2 + "');"); mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString3 + "');"); } @MediumTest public void testCustomFunctionNoReturn() { mDatabase.addCustomFunction("emptyFunction", 1, new SQLiteDatabase.CustomFunction() { @Override public void callback(String[] args) { return; } }); Cursor cursor = mDatabase.rawQuery("SELECT emptyFunction(3.14)", null); // always empty regardless of if sqlite3_result_null is called or not cursor.moveToFirst(); assertSame(null, cursor.getString(0)); } @MediumTest public void testVersion() throws Exception { assertEquals(CURRENT_DATABASE_VERSION, mDatabase.getVersion()); mDatabase.setVersion(11); assertEquals(11, mDatabase.getVersion()); } @MediumTest public void testUpdate() throws Exception { populateDefaultTable(); ContentValues values = new ContentValues(1); values.put("data", "this is an updated test"); assertEquals(1, mDatabase.update("test", values, "_id=1", null)); Cursor c = mDatabase.query("test", null, "_id=1", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); String value = c.getString(c.getColumnIndexOrThrow("data")); assertEquals("this is an updated test", value); } @Suppress // PHONE_NUMBERS_EQUAL not supported @MediumTest public void testPhoneNumbersEqual() throws Exception { mDatabase.execSQL("CREATE TABLE phones (num TEXT);"); mDatabase.execSQL("INSERT INTO phones (num) VALUES ('911');"); mDatabase.execSQL("INSERT INTO phones (num) VALUES ('5555');"); mDatabase.execSQL("INSERT INTO phones (num) VALUES ('+" + PHONE_NUMBER + "');"); String number; Cursor c; c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '504-555-7683')", null, null, null, null); assertTrue(c == null || c.getCount() == 0); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '911')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("911", number); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '5555')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("5555", number); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '180055555555')", null, null, null, null); assertTrue(c == null || c.getCount() == 0); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '+" + PHONE_NUMBER + "')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("+" + PHONE_NUMBER, number); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '+1 (617).555-1212')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("+" + PHONE_NUMBER, number); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '" + PHONE_NUMBER + "')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("+" + PHONE_NUMBER, number); c.close(); /* c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '5551212')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("+" + PHONE_NUMBER, number); c.close(); */ c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '011" + PHONE_NUMBER + "')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("+" + PHONE_NUMBER, number); c.close(); c = mDatabase.query("phones", null, "PHONE_NUMBERS_EQUAL(num, '00" + PHONE_NUMBER + "')", null, null, null, null); assertNotNull(c); assertEquals(1, c.getCount()); c.moveToFirst(); number = c.getString(c.getColumnIndexOrThrow("num")); assertEquals("+" + PHONE_NUMBER, number); c.close(); } private void phoneNumberCompare(String phone1, String phone2, boolean equal, boolean useStrictComparation) { String[] temporalPhoneNumbers = new String[2]; temporalPhoneNumbers[0] = phone1; temporalPhoneNumbers[1] = phone2; Cursor cursor = mDatabase.rawQuery( String.format(Locale.ROOT, "SELECT CASE WHEN PHONE_NUMBERS_EQUAL(?, ?, %d) " + "THEN 'equal' ELSE 'not equal' END", (useStrictComparation ? 1 : 0)), temporalPhoneNumbers); try { assertNotNull(cursor); assertTrue(cursor.moveToFirst()); if (equal) { assertEquals(String.format("Unexpectedly, \"%s != %s\".", phone1, phone2), "equal", cursor.getString(0)); } else { assertEquals(String.format("Unexpectedly, \"%s\" == \"%s\".", phone1, phone2), "not equal", cursor.getString(0)); } } finally { if (cursor != null) { cursor.close(); } } } private void assertPhoneNumberEqual(String phone1, String phone2) throws Exception { assertPhoneNumberEqual(phone1, phone2, true); assertPhoneNumberEqual(phone1, phone2, false); } private void assertPhoneNumberEqual(String phone1, String phone2, boolean useStrict) throws Exception { phoneNumberCompare(phone1, phone2, true, useStrict); } private void assertPhoneNumberNotEqual(String phone1, String phone2) throws Exception { assertPhoneNumberNotEqual(phone1, phone2, true); assertPhoneNumberNotEqual(phone1, phone2, false); } private void assertPhoneNumberNotEqual(String phone1, String phone2, boolean useStrict) throws Exception { phoneNumberCompare(phone1, phone2, false, useStrict); } /** * Tests international matching issues for the PHONE_NUMBERS_EQUAL function. * * @throws Exception */ @Suppress // PHONE_NUMBERS_EQUAL not supported @SmallTest public void testPhoneNumbersEqualInternationl() throws Exception { assertPhoneNumberEqual("1", "1"); assertPhoneNumberEqual("123123", "123123"); assertPhoneNumberNotEqual("123123", "923123"); assertPhoneNumberNotEqual("123123", "123129"); assertPhoneNumberNotEqual("123123", "1231234"); assertPhoneNumberNotEqual("123123", "0123123", false); assertPhoneNumberNotEqual("123123", "0123123", true); assertPhoneNumberEqual("650-253-0000", "6502530000"); assertPhoneNumberEqual("650-253-0000", "650 253 0000"); assertPhoneNumberEqual("650 253 0000", "6502530000"); assertPhoneNumberEqual("+1 650-253-0000", "6502530000"); assertPhoneNumberEqual("001 650-253-0000", "6502530000"); assertPhoneNumberEqual("0111 650-253-0000", "6502530000"); // Russian trunk digit assertPhoneNumberEqual("+79161234567", "89161234567"); // French trunk digit assertPhoneNumberEqual("+33123456789", "0123456789"); // Trunk digit for city codes in the Netherlands assertPhoneNumberEqual("+31771234567", "0771234567"); // Test broken caller ID seen on call from Thailand to the US assertPhoneNumberEqual("+66811234567", "166811234567"); // Test the same in-country number with different country codes assertPhoneNumberNotEqual("+33123456789", "+1123456789"); // Test one number with country code and the other without assertPhoneNumberEqual("5125551212", "+15125551212"); // Test two NANP numbers that only differ in the area code assertPhoneNumberNotEqual("5125551212", "6505551212"); // Japanese phone numbers assertPhoneNumberEqual("090-1234-5678", "+819012345678"); assertPhoneNumberEqual("090(1234)5678", "+819012345678"); assertPhoneNumberEqual("090-1234-5678", "+81-90-1234-5678"); // Equador assertPhoneNumberEqual("+593(800)123-1234", "8001231234"); assertPhoneNumberEqual("+593-2-1234-123", "21234123"); // Two continuous 0 at the beginning of the phone string should not be // treated as trunk prefix in the strict comparation. assertPhoneNumberEqual("008001231234", "8001231234", false); assertPhoneNumberNotEqual("008001231234", "8001231234", true); // Confirm that the bug found before does not re-appear in the strict compalation assertPhoneNumberEqual("080-1234-5678", "+819012345678", false); assertPhoneNumberNotEqual("080-1234-5678", "+819012345678", true); } @MediumTest public void testCopyString() throws Exception { mDatabase.execSQL("CREATE TABLE guess (numi INTEGER, numf FLOAT, str TEXT);"); mDatabase.execSQL( "INSERT INTO guess (numi,numf,str) VALUES (0,0.0,'ZoomZoomZoomZoom');"); mDatabase.execSQL("INSERT INTO guess (numi,numf,str) VALUES (2000000000,3.1415926535,'');"); String chinese = "\u4eac\u4ec5 \u5c3d\u5f84\u60ca"; String[] arr = new String[1]; arr[0] = chinese; mDatabase.execSQL("INSERT INTO guess (numi,numf,str) VALUES (-32768,-1.0,?)", arr); Cursor c; c = mDatabase.rawQuery("SELECT * FROM guess", null); c.moveToFirst(); CharArrayBuffer buf = new CharArrayBuffer(14); String compareTo = c.getString(c.getColumnIndexOrThrow("numi")); int numiIdx = c.getColumnIndexOrThrow("numi"); int numfIdx = c.getColumnIndexOrThrow("numf"); int strIdx = c.getColumnIndexOrThrow("str"); c.copyStringToBuffer(numiIdx, buf); assertEquals(1, buf.sizeCopied); assertEquals(compareTo, new String(buf.data, 0, buf.sizeCopied)); c.copyStringToBuffer(strIdx, buf); assertEquals("ZoomZoomZoomZoom", new String(buf.data, 0, buf.sizeCopied)); c.moveToNext(); compareTo = c.getString(numfIdx); c.copyStringToBuffer(numfIdx, buf); assertEquals(compareTo, new String(buf.data, 0, buf.sizeCopied)); c.copyStringToBuffer(strIdx, buf); assertEquals(0, buf.sizeCopied); c.moveToNext(); c.copyStringToBuffer(numfIdx, buf); assertEquals(-1.0, Double.valueOf( new String(buf.data, 0, buf.sizeCopied))); c.copyStringToBuffer(strIdx, buf); compareTo = c.getString(strIdx); assertEquals(chinese, compareTo); assertEquals(chinese, new String(buf.data, 0, buf.sizeCopied)); c.close(); } @MediumTest public void testSchemaChange1() throws Exception { SQLiteDatabase db1 = mDatabase; Cursor cursor; db1.execSQL("CREATE TABLE db1 (_id INTEGER PRIMARY KEY, data TEXT);"); cursor = db1.query("db1", null, null, null, null, null, null); assertNotNull("Cursor is null", cursor); db1.execSQL("CREATE TABLE db2 (_id INTEGER PRIMARY KEY, data TEXT);"); assertEquals(0, cursor.getCount()); cursor.close(); } @MediumTest public void testSchemaChange2() throws Exception { mDatabase.execSQL("CREATE TABLE db1 (_id INTEGER PRIMARY KEY, data TEXT);"); Cursor cursor = mDatabase.query("db1", null, null, null, null, null, null); assertNotNull(cursor); assertEquals(0, cursor.getCount()); cursor.close(); } @MediumTest public void testSchemaChange3() throws Exception { mDatabase.execSQL("CREATE TABLE db1 (_id INTEGER PRIMARY KEY, data TEXT);"); mDatabase.execSQL("INSERT INTO db1 (data) VALUES ('test');"); mDatabase.execSQL("ALTER TABLE db1 ADD COLUMN blah int;"); Cursor c = null; try { c = mDatabase.rawQuery("select blah from db1", null); } catch (SQLiteException e) { fail("unexpected exception: " + e.getMessage()); } finally { if (c != null) { c.close(); } } } @MediumTest public void testSelectionArgs() throws Exception { mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, data TEXT);"); ContentValues values = new ContentValues(1); values.put("data", "don't forget to handled 's"); mDatabase.insert("test", "data", values); values.clear(); values.put("data", "no apostrophes here"); mDatabase.insert("test", "data", values); Cursor c = mDatabase.query( "test", null, "data GLOB ?", new String[]{"*'*"}, null, null, null); assertEquals(1, c.getCount()); assertTrue(c.moveToFirst()); assertEquals("don't forget to handled 's", c.getString(1)); c.close(); } @Suppress // unicode collator not supported yet @MediumTest public void testTokenize() throws Exception { Cursor c; mDatabase.execSQL("CREATE TABLE tokens (" + "token TEXT COLLATE unicode," + "source INTEGER," + "token_index INTEGER," + "tag TEXT" + ");"); mDatabase.execSQL("CREATE TABLE tokens_no_index (" + "token TEXT COLLATE unicode," + "source INTEGER" + ");"); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT _TOKENIZE(NULL, NULL, NULL, NULL)", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', NULL, NULL, NULL)", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', 10, NULL, NULL)", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', 10, 'some string', NULL)", null)); Assert.assertEquals(3, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', 11, 'some string ok', ' ', 1, 'foo')", null)); Assert.assertEquals(2, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', 11, 'second field', ' ', 1, 'bar')", null)); Assert.assertEquals(3, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens_no_index', 20, 'some string ok', ' ')", null)); Assert.assertEquals(3, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens_no_index', 21, 'foo bar baz', ' ', 0)", null)); // test Chinese String chinese = "\u4eac\u4ec5 \u5c3d\u5f84\u60ca"; Assert.assertEquals(2, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', 12,'" + chinese + "', ' ', 1)", null)); String icustr = "Fr\u00e9d\u00e9ric Hj\u00f8nnev\u00e5g"; Assert.assertEquals(2, longForQuery(mDatabase, "SELECT _TOKENIZE('tokens', 13, '" + icustr + "', ' ', 1)", null)); Assert.assertEquals(9, longForQuery(mDatabase, "SELECT count(*) from tokens;", null)); String key = DatabaseUtils.getHexCollationKey("Frederic Hjonneva"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(13, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("Hjonneva"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(13, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("some string ok"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(11, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals("foo", stringForQuery(mDatabase, "SELECT tag from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("string"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(11, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals("foo", stringForQuery(mDatabase, "SELECT tag from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("ok"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(11, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(2, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals("foo", stringForQuery(mDatabase, "SELECT tag from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("second field"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(11, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals("bar", stringForQuery(mDatabase, "SELECT tag from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("field"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(11, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals("bar", stringForQuery(mDatabase, "SELECT tag from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey(chinese); String[] a = new String[1]; a[0] = key; Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token= ?", a)); Assert.assertEquals(12, longForQuery(mDatabase, "SELECT source from tokens where token= ?", a)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token= ?", a)); a[0] += "*"; Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB ?", a)); Assert.assertEquals(12, longForQuery(mDatabase, "SELECT source from tokens where token GLOB ?", a)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB ?", a)); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token= '" + key + "'", null)); Assert.assertEquals(12, longForQuery(mDatabase, "SELECT source from tokens where token= '" + key + "'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token= '" + key + "'", null)); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(12, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("\u4eac\u4ec5"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(12, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("\u5c3d\u5f84\u60ca"); Log.d("DatabaseGeneralTest", "key = " + key); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(12, longForQuery(mDatabase, "SELECT source from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT token_index from tokens where token GLOB '" + key + "*'", null)); Assert.assertEquals(0, longForQuery(mDatabase, "SELECT count(*) from tokens where token GLOB 'ab*'", null)); key = DatabaseUtils.getHexCollationKey("some string ok"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens_no_index where token GLOB '" + key + "*'", null)); Assert.assertEquals(20, longForQuery(mDatabase, "SELECT source from tokens_no_index where token GLOB '" + key + "*'", null)); key = DatabaseUtils.getHexCollationKey("bar"); Assert.assertEquals(1, longForQuery(mDatabase, "SELECT count(*) from tokens_no_index where token GLOB '" + key + "*'", null)); Assert.assertEquals(21, longForQuery(mDatabase, "SELECT source from tokens_no_index where token GLOB '" + key + "*'", null)); } @MediumTest public void testTransactions() throws Exception { mDatabase.execSQL("CREATE TABLE test (num INTEGER);"); mDatabase.execSQL("INSERT INTO test (num) VALUES (0)"); // Make sure that things work outside an explicit transaction. setNum(1); checkNum(1); // Test a single-level transaction. setNum(0); mDatabase.beginTransaction(); setNum(1); mDatabase.setTransactionSuccessful(); mDatabase.endTransaction(); checkNum(1); Assert.assertFalse(mDatabase.isDbLockedByCurrentThread()); // Test a rolled-back transaction. setNum(0); mDatabase.beginTransaction(); setNum(1); mDatabase.endTransaction(); checkNum(0); Assert.assertFalse(mDatabase.isDbLockedByCurrentThread()); // We should get an error if we end a non-existent transaction. assertThrowsIllegalState(new Runnable() { public void run() { mDatabase.endTransaction(); }}); // We should get an error if a set a non-existent transaction as clean. assertThrowsIllegalState(new Runnable() { public void run() { mDatabase.setTransactionSuccessful(); }}); mDatabase.beginTransaction(); mDatabase.setTransactionSuccessful(); // We should get an error if we mark a transaction as clean twice. assertThrowsIllegalState(new Runnable() { public void run() { mDatabase.setTransactionSuccessful(); }}); // We should get an error if we begin a transaction after marking the parent as clean. assertThrowsIllegalState(new Runnable() { public void run() { mDatabase.beginTransaction(); }}); mDatabase.endTransaction(); Assert.assertFalse(mDatabase.isDbLockedByCurrentThread()); // Test a two-level transaction. setNum(0); mDatabase.beginTransaction(); mDatabase.beginTransaction(); setNum(1); mDatabase.setTransactionSuccessful(); mDatabase.endTransaction(); mDatabase.setTransactionSuccessful(); mDatabase.endTransaction(); checkNum(1); Assert.assertFalse(mDatabase.isDbLockedByCurrentThread()); // Test rolling back an inner transaction. setNum(0); mDatabase.beginTransaction(); mDatabase.beginTransaction(); setNum(1); mDatabase.endTransaction(); mDatabase.setTransactionSuccessful(); mDatabase.endTransaction(); checkNum(0); Assert.assertFalse(mDatabase.isDbLockedByCurrentThread()); // Test rolling back an outer transaction. setNum(0); mDatabase.beginTransaction(); mDatabase.beginTransaction(); setNum(1); mDatabase.setTransactionSuccessful(); mDatabase.endTransaction(); mDatabase.endTransaction(); checkNum(0); Assert.assertFalse(mDatabase.isDbLockedByCurrentThread()); } private void setNum(int num) { mDatabase.execSQL("UPDATE test SET num = " + num); } private void checkNum(int num) { Assert.assertEquals( num, longForQuery(mDatabase, "SELECT num FROM test", null)); } private void assertThrowsIllegalState(Runnable r) { boolean ok = false; try { r.run(); } catch (IllegalStateException e) { ok = true; } Assert.assertTrue(ok); } @MediumTest public void testContentValues() throws Exception { ContentValues values = new ContentValues(); values.put("string", "value"); assertEquals("value", values.getAsString("string")); byte[] bytes = new byte[42]; Arrays.fill(bytes, (byte) 0x28); values.put("byteArray", bytes); assertTrue(Arrays.equals(bytes, values.getAsByteArray("byteArray"))); // Write the ContentValues to a Parcel and then read them out Parcel p = Parcel.obtain(); values.writeToParcel(p, 0); p.setDataPosition(0); values = ContentValues.CREATOR.createFromParcel(p); // Read the values out again and make sure they're the same assertTrue(Arrays.equals(bytes, values.getAsByteArray("byteArray"))); assertEquals("value", values.get("string")); } public static final int TABLE_INFO_PRAGMA_COLUMNNAME_INDEX = 1; public static final int TABLE_INFO_PRAGMA_DEFAULT_INDEX = 4; @MediumTest public void testTableInfoPragma() throws Exception { mDatabase.execSQL("CREATE TABLE pragma_test (" + "i INTEGER DEFAULT 1234, " + "j INTEGER, " + "s TEXT DEFAULT 'hello', " + "t TEXT, " + "'select' TEXT DEFAULT \"hello\")"); try { Cursor cur = mDatabase.rawQuery("PRAGMA table_info(pragma_test)", null); Assert.assertEquals(5, cur.getCount()); Assert.assertTrue(cur.moveToNext()); Assert.assertEquals("i", cur.getString(TABLE_INFO_PRAGMA_COLUMNNAME_INDEX)); Assert.assertEquals("1234", cur.getString(TABLE_INFO_PRAGMA_DEFAULT_INDEX)); Assert.assertTrue(cur.moveToNext()); Assert.assertEquals("j", cur.getString(TABLE_INFO_PRAGMA_COLUMNNAME_INDEX)); Assert.assertEquals(null, cur.getString(TABLE_INFO_PRAGMA_DEFAULT_INDEX)); Assert.assertTrue(cur.moveToNext()); Assert.assertEquals("s", cur.getString(TABLE_INFO_PRAGMA_COLUMNNAME_INDEX)); Assert.assertEquals("'hello'", cur.getString(TABLE_INFO_PRAGMA_DEFAULT_INDEX)); Assert.assertTrue(cur.moveToNext()); Assert.assertEquals("t", cur.getString(TABLE_INFO_PRAGMA_COLUMNNAME_INDEX)); Assert.assertEquals(null, cur.getString(TABLE_INFO_PRAGMA_DEFAULT_INDEX)); Assert.assertTrue(cur.moveToNext()); Assert.assertEquals("select", cur.getString(TABLE_INFO_PRAGMA_COLUMNNAME_INDEX)); Assert.assertEquals("\"hello\"", cur.getString(TABLE_INFO_PRAGMA_DEFAULT_INDEX)); cur.close(); } catch (Throwable t) { t.printStackTrace(); throw new RuntimeException( "If you see this test fail, it's likely that something about " + "sqlite's PRAGMA table_info(...) command has changed.", t); } } @MediumTest public void testSemicolonsInStatements() throws Exception { mDatabase.execSQL("CREATE TABLE pragma_test (" + "i INTEGER DEFAULT 1234, " + "j INTEGER, " + "s TEXT DEFAULT 'hello', " + "t TEXT, " + "'select' TEXT DEFAULT \"hello\")"); try { // ending the sql statement with semicolons shouldn't be a problem. Cursor cur = mDatabase.rawQuery("PRAGMA database_list;", null); cur.close(); // two semicolons in the statement shouldn't be a problem. cur = mDatabase.rawQuery("PRAGMA database_list;;", null); cur.close(); } catch (Throwable t) { fail("unexpected, of course"); } } @MediumTest public void testUnionsWithBindArgs() { /* make sure unions with bindargs work http://b/issue?id=1061291 */ mDatabase.execSQL("CREATE TABLE A (i int);"); mDatabase.execSQL("create table B (k int);"); mDatabase.execSQL("create table C (n int);"); mDatabase.execSQL("insert into A values(1);"); mDatabase.execSQL("insert into A values(2);"); mDatabase.execSQL("insert into A values(3);"); mDatabase.execSQL("insert into B values(201);"); mDatabase.execSQL("insert into B values(202);"); mDatabase.execSQL("insert into B values(203);"); mDatabase.execSQL("insert into C values(901);"); mDatabase.execSQL("insert into C values(902);"); String s = "select i from A where i > 2 " + "UNION select k from B where k > 201 " + "UNION select n from C where n !=900;"; Cursor c = mDatabase.rawQuery(s, null); int n = c.getCount(); c.close(); String s1 = "select i from A where i > ? " + "UNION select k from B where k > ? " + "UNION select n from C where n != ?;"; Cursor c1 = mDatabase.rawQuery(s1, new String[]{"2", "201", "900"}); assertEquals(n, c1.getCount()); c1.close(); } /** * This test is available only when the platform has a locale with the language "ja". * It finishes without failure when it is not available. */ @Suppress @MediumTest public void testCollateLocalizedForJapanese() throws Exception { final String testName = "DatabaseGeneralTest#testCollateLocalizedForJapanese()"; final Locale[] localeArray = Locale.getAvailableLocales(); final String japanese = Locale.JAPANESE.getLanguage(); final String english = Locale.ENGLISH.getLanguage(); Locale japaneseLocale = null; Locale englishLocale = null; for (Locale locale : localeArray) { if (locale != null) { final String language = locale.getLanguage(); if (language == null) { continue; } else if (language.equals(japanese)) { japaneseLocale = locale; } else if (language.equals(english)) { englishLocale = locale; } } if (japaneseLocale != null && englishLocale != null) { break; } } if (japaneseLocale == null || englishLocale == null) { Log.d(TAG, testName + "n is silently skipped since " + (englishLocale == null ? (japaneseLocale == null ? "Both English and Japanese locales do not exist." : "English locale does not exist.") : (japaneseLocale == null ? "Japanese locale does not exist." : "...why?"))); return; } Locale originalLocale = Locale.getDefault(); try { final String dbName = "collate_localized_test"; mDatabase.execSQL("CREATE TABLE " + dbName + " (" + "_id INTEGER PRIMARY KEY, " + "s TEXT COLLATE LOCALIZED) "); //DatabaseUtils.InsertHelper ih = // new DatabaseUtils.InsertHelper(mDatabase, dbName); ContentValues cv = new ContentValues(); cv = new ContentValues(); // cv.put("s", "\uFF75\uFF77\uFF85\uFF9C"); // O-ki-na-wa in half-width Katakana //ih.insert(cv); cv = new ContentValues(); // cv.put("s", "\u306B\u307B\u3093"); // Ni-ho-n in Hiragana //ih.insert(cv); cv = new ContentValues(); // cv.put("s", "\u30A2\u30E1\u30EA\u30AB"); // A-me-ri-ca in hull-width Katakana //ih.insert(cv); // Assume setLocale() does REINDEX and an English locale does not consider // Japanese-specific LOCALIZED order. Locale.setDefault(englishLocale); Locale.setDefault(japaneseLocale); Cursor cur = mDatabase.rawQuery( "SELECT * FROM " + dbName + " ORDER BY s", null); assertTrue(cur.moveToFirst()); assertEquals("\u30A2\u30E1\u30EA\u30AB", cur.getString(1)); assertTrue(cur.moveToNext()); assertEquals("\uFF75\uFF77\uFF85\uFF9C", cur.getString(1)); assertTrue(cur.moveToNext()); assertEquals("\u306B\u307B\u3093", cur.getString(1)); } finally { if (originalLocale != null) { try { Locale.setDefault(originalLocale); } catch (Exception ignored) { } } } } @SmallTest public void testSetMaxCacheSize() { mDatabase.execSQL("CREATE TABLE test (i int, j int);"); mDatabase.execSQL("insert into test values(1,1);"); // set cache size int N = SQLiteDatabase.MAX_SQL_CACHE_SIZE; mDatabase.setMaxSqlCacheSize(N); // try reduce cachesize try { mDatabase.setMaxSqlCacheSize(1); } catch (IllegalStateException e) { assertTrue(e.getMessage().contains("cannot set cacheSize to a value less than")); } } @LargeTest public void testDefaultDatabaseErrorHandler() { DefaultDatabaseErrorHandler errorHandler = new DefaultDatabaseErrorHandler(); // close the database. and call corruption handler. // it should delete the database file. File dbfile = new File(mDatabase.getPath()); mDatabase.close(); assertFalse(mDatabase.isOpen()); assertTrue(dbfile.exists()); try { errorHandler.onCorruption(mDatabase); assertFalse(dbfile.exists()); } catch (Exception e) { fail("unexpected"); } // create an in-memory database. and corruption handler shouldn't try to delete it SQLiteDatabase memoryDb = SQLiteDatabase.openOrCreateDatabase(":memory:", null); assertNotNull(memoryDb); memoryDb.close(); assertFalse(memoryDb.isOpen()); try { errorHandler.onCorruption(memoryDb); } catch (Exception e) { fail("unexpected"); } // create a database, keep it open, call corruption handler. database file should be deleted SQLiteDatabase dbObj = SQLiteDatabase.openOrCreateDatabase(mDatabase.getPath(), null); assertTrue(dbfile.exists()); assertNotNull(dbObj); assertTrue(dbObj.isOpen()); try { errorHandler.onCorruption(dbObj); assertFalse(dbfile.exists()); } catch (Exception e) { fail("unexpected"); } // create a database, attach 2 more databases to it // attached database # 1: ":memory:" // attached database # 2: mDatabase.getPath() + "1"; // call corruption handler. database files including the one for attached database # 2 // should be deleted String attachedDb1File = mDatabase.getPath() + "1"; dbObj = SQLiteDatabase.openOrCreateDatabase(mDatabase.getPath(), null); dbObj.execSQL("ATTACH DATABASE ':memory:' as memoryDb"); dbObj.execSQL("ATTACH DATABASE '" + attachedDb1File + "' as attachedDb1"); assertTrue(dbfile.exists()); assertTrue(new File(attachedDb1File).exists()); assertNotNull(dbObj); assertTrue(dbObj.isOpen()); List<Pair<String, String>> attachedDbs = dbObj.getAttachedDbs(); try { errorHandler.onCorruption(dbObj); assertFalse(dbfile.exists()); assertFalse(new File(attachedDb1File).exists()); } catch (Exception e) { fail("unexpected"); } // same as above, except this is a bit of stress testing. attach 5 database files // and make sure they are all removed. int N = 5; ArrayList<String> attachedDbFiles = new ArrayList<String>(N); for (int i = 0; i < N; i++) { attachedDbFiles.add(mDatabase.getPath() + i); } dbObj = SQLiteDatabase.openOrCreateDatabase(mDatabase.getPath(), null); dbObj.execSQL("ATTACH DATABASE ':memory:' as memoryDb"); for (int i = 0; i < N; i++) { dbObj.execSQL("ATTACH DATABASE '" + attachedDbFiles.get(i) + "' as attachedDb" + i); } assertTrue(dbfile.exists()); for (int i = 0; i < N; i++) { assertTrue(new File(attachedDbFiles.get(i)).exists()); } assertNotNull(dbObj); assertTrue(dbObj.isOpen()); attachedDbs = dbObj.getAttachedDbs(); try { errorHandler.onCorruption(dbObj); assertFalse(dbfile.exists()); for (int i = 0; i < N; i++) { assertFalse(new File(attachedDbFiles.get(i)).exists()); } } catch (Exception e) { fail("unexpected"); } } /** * Utility method to run the query on the db and return the value in the * first column of the first row. */ public static long longForQuery(SQLiteDatabase db, String query, String[] selectionArgs) { SQLiteStatement prog = db.compileStatement(query); try { return longForQuery(prog, selectionArgs); } finally { prog.close(); } } /** * Utility method to run the pre-compiled query and return the value in the * first column of the first row. */ public static long longForQuery(SQLiteStatement prog, String[] selectionArgs) { prog.bindAllArgsAsStrings(selectionArgs); return prog.simpleQueryForLong(); } /** * Utility method to run the query on the db and return the value in the * first column of the first row. */ public static String stringForQuery(SQLiteDatabase db, String query, String[] selectionArgs) { SQLiteStatement prog = db.compileStatement(query); try { return stringForQuery(prog, selectionArgs); } finally { prog.close(); } } /** * Utility method to run the pre-compiled query and return the value in the * first column of the first row. */ public static String stringForQuery(SQLiteStatement prog, String[] selectionArgs) { prog.bindAllArgsAsStrings(selectionArgs); return prog.simpleQueryForString(); } } |