Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7368065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:37:04+00:00 2026-05-29T03:37:04+00:00

I am porting iOS code that works perfectly to the Android OS. I perform

  • 0

I am porting iOS code that works perfectly to the Android OS. I perform a bunch of queries, inserting the results of the queries into a temporary table. When all of the queries are complete I then grab all of the results from the temporary table into a collection of objects of my own creation. I am using a temporary table rather than selecting straight into the collection because I believe it executes more quickly, or at least it does on the iOS side anyways. My problem is that execSQL() is not working as I would expect, here is the code:

db.execSQL("CREATE TEMPORARY TABLE SearchResults(Name text);");
db.execSQL("INSERT INTO SearchResults (Name) SELECT Name FROM ProductNames WHERE NameLower MATCH '" + termLowerCase + "*';");
db.execSQL("INSERT INTO SearchResults (Name) SELECT Name FROM BrandNames WHERE NameLower MATCH '" + termLowerCase + "*';");

When I execute this code I only ever get one row from the first execSQL() call with the INSERT. I know there are more than one result in the ProductNames table that should match my term, and I know there are hundreds of rows in the BrandNames table that should match my term. If I change the code to this:

Cursor cursor = db.rawQuery("SELECT Name FROM ProductNames WHERE NameLower MATCH '" + termLowerCase + "*'", null);
cursor.moveToFirst();
while (!cursor.isAfterLast())
{
    resultSet.add(cursor.getString(0));
    cursor.moveToNext();
}
cursor.close();
cursor = db.rawQuery("SELECT Name FROM BrandNames WHERE NameLower MATCH '" + termLowerCase + "*'", null);
cursor.moveToFirst();
while (!cursor.isAfterLast())
{
    resultSet.add(cursor.getString(0));
    cursor.moveToNext();
}

I get all the results that I’m expecting.

Could anyone tell me what I’m doing wrong? Am I using execSQL() in an inappropriate way? I assumed it would simply pass the query onto sqlite3_exec() which is what I use on iOS. If I am using execSQL() inappropriately what are its limitations and what is the fastest alternative to what I want to do? Thanks very much for any help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:37:05+00:00Added an answer on May 29, 2026 at 3:37 am

    According to the SQLiteDatabase documentation you can not use execSQL in this case. Try doing that statement with rawQuery instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have code that I am porting from iOS 4 to iOS 3.2 for
I'm porting old VB6 code that uses the Winsock control to C#. I haven't
I am porting an app that I originally wrote using the accelerometer for IOS
I've been porting my cocos2D iOS game to Mac and it works without problems
Porting android applications to iphone applications always gives me the following pattern that I
I'm in the process of porting an app originally developed on iOS to Android.
I'm porting an app from iOS to Android. In the iOS app, there is
I'm porting AIR app to iOS. App saves document localy with File.browseForSave() . That
I am developing apps for ios and android sdk. Is there any tutorial that
I'm porting an Android app I made to iOS. Android has a Yield() function

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.