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 8960509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:40:26+00:00 2026-06-15T15:40:26+00:00

Im trying to update the html column in every row in my database when

  • 0

Im trying to update the “html” column in every row in my database when the app is synchronizing. I’ve used this tutorial Here to add the app to the “profile” list. This is the code I use in the SyncAdapter:

private static void performSync(Context context, Account account, Bundle extras, String authority, ContentProviderClient provider, SyncResult syncResult) throws OperationCanceledException {
  MySQLiteHelper openHelperClass;
  SQLiteDatabase sqliteDatabase;
  String str;
  mContentResolver = context.getContentResolver();
  Log.i(TAG, "performSync: " + account.toString());

  Log.v(TAG, "CDS Opened!");
  openHelperClass = new MySQLiteHelper(context);
  sqliteDatabase = openHelperClass.getWritableDatabase();
  Log.v(TAG, "CDS loaded db!");
  Cursor cursor = sqliteDatabase.query("offline", null, null, null, null, null, null);
  Log.v(TAG, "CDS queried!");
  if(cursor != null) {
      Log.v(TAG, "Cursor not null!");
      Log.v(TAG,cursor.toString());
      if(cursor.moveToFirst()) {
          Log.v(TAG, "first pos");
      while(cursor.moveToNext()) {
          Log.v(TAG, "1");
          Log.v(TAG, "Cursor moving!");
          String skolelogg = cursor.getString(cursor.getColumnIndexOrThrow(MySQLiteHelper.COLUMN_SKOLE_LOGGING_OFFLINE));
          int skplid = cursor.getInt(cursor.getColumnIndexOrThrow(MySQLiteHelper.COLUMN_PLAN_ID));
          String skplant = cursor.getString(cursor.getColumnIndexOrThrow(MySQLiteHelper.COLUMN_PLAN_TYPE));
          int offid = cursor.getInt(cursor.getColumnIndexOrThrow(MySQLiteHelper.COLUMN_ID_OFFLINE));
          try {
              HttpClient hc = new DefaultHttpClient();
              HttpPost post = new HttpPost("https://romres.ist-asp.com/WebUntis/Timetable.do?simple=1&type=" + skplant + "&" + skolelogg + "&id="+ Integer.toString(skplid));

              HttpResponse rp = hc.execute(post);
               if(rp.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
                   str = EntityUtils.toString(rp.getEntity());
                   Log.v(TAG, "Syncing....");
                   Log.v(TAG, "Syncing ID: " + Integer.toString(offid));

                   String csstext = "<link rel='stylesheet' type='text/css' href='Styles/webuntis.css'>";
                   csstext += "<style type='text/css'>";
                   csstext += "*.A_0_1 {background:#f49f25;font-size:12px;}";
                   csstext += "*.I_100_28 {background:#ffff80;}";
                   csstext += "*.I_100_29 {background:#ffff80;}";
                   csstext += "*.I_100_30 {background:#ffff80;}";
                   csstext += "*.I_100_31 {background:#ffff80;}";
                   csstext += "*.I_100_368 {background:#ffff80;}";
                   csstext += "*.I_100_710 {background:#ff00ff;}";
                   csstext += "*.A_0_9 td,*.A_0_11 td,*.A_0_12 td,*.A_11_9 td,*.A_11_11 td,*.A_11_12 td,*.A_40_9 td,*.A_40_11 td,*.A_40_12 td,*.A_41_9 td,*.A_41_11 td,*.A_41_12 td,*.A_5_9 td,*.A_5_11 td,*.A_5_12 td,*.A_10_9 td,*.A_10_11 td,*.A_10_12 td,*.A_50_9 td,*.A_50_11 td,*.A_50_12 td,*.A_51_9 td,*.A_51_11 td,*.A_51_12 td,*.A_15_9 td,*.A_15_11 td,*.A_15_12 td,*.A_20_9 td,*.A_20_11 td,*.A_20_12 td {text-decoration: line-through;}";
                   csstext += "</style>";

                   Document doc = Jsoup.parse(str);
                   Element title = doc.select("div.def").first();
                   String s = title.toString();

                   Element offlinetext = doc.append("<div class='offlinetext'>Offline-Timeplan</div>");
                   String offltt = "<div class='offlinetext'>Offline-Timeplan</div>";

                   String extraCSS = "<style>";
                   extraCSS += ".offlinetext {font-family: Arial; font-size: 20px; font-style: normal; font-weight: 500; color: #FF9900; line-height: 19px; height: 30px;}';";
                   extraCSS += "</style>";

                   Element title2 = doc.select("div.pagetitle").first();
                   String s2 = title2.toString();
                   str = csstext + extraCSS + offltt + s2 + s;

                   ContentValues cv = new ContentValues();
                   cv.put(MySQLiteHelper.COLUMN_SKOLE_HTML_CODE, str);
                   sqliteDatabase.update(MySQLiteHelper.TABLE_OFFLINE, cv, "_id = ?", new String [] { Integer.toString(offid) });
               }
          }
          catch(IOException e){
              Log.v(TAG, e.toString());

          }
      }
      }
      else {
          Log.v(TAG, "moveToNext() is false");
      }
  }
  else{
      Log.v(TAG, "It's null");
  }

 }

Here’s the LogCat output when I press “synchronize” in the settings menu in Android:

12-04 21:17:30.066: D/webviewglue(20944): nativeDestroy view: 0x51028af0
12-04 21:17:39.241: I/ContactsSyncAdapterService(21115): performSync: Account {name=*, type=*.account}
12-04 21:17:39.246: V/ContactsSyncAdapterService(21115): CDS Opened!
12-04 21:17:39.251: V/ContactsSyncAdapterService(21115): CDS loaded db!
12-04 21:17:39.251: V/ContactsSyncAdapterService(21115): CDS queried!
12-04 21:17:39.251: V/ContactsSyncAdapterService(21115): Cursor not null!
12-04 21:17:39.256: V/ContactsSyncAdapterService(21115): android.database.sqlite.SQLiteCursor@411c4de0
12-04 21:17:39.256: V/ContactsSyncAdapterService(21115): moveToNext() is false

The problem is that everything works fine until it gets to cursor.moveToFirst(). As you can see, the cursor is both null and not null(?) at the same time, since it gets past the “cursor != null” check but returns “cursor.moveToFirst” with null. I really need help. I can’t figure out what’s wrong. I’m still a noob at writing a SyncAdapter and even a ContentProvider.

EDIT: I’m stupid. As Justin pointed out, the cursor was indeed empty because there were no rows in the table. It worked after I added an entry into the table!

  • 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-06-15T15:40:27+00:00Added an answer on June 15, 2026 at 3:40 pm

    moveToFirst() returning false means that your cursor is empty (has no rows). That is not equivalent to null.

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

Sidebar

Related Questions

I'm trying to update a database using html form + jquery + php When
I am trying update text views while this loop is processing. Here is my
I am trying to make gsub on my column before save or update. Here
I am trying to update a column in a row in a MySQL table.
Hi I am trying to update a div with some html from another div.
I am trying to update the value of a column where it matches a
I'm trying to use jQuery to add dynamic Add/Remove row function, but I meet
I have an HTML Table that looks like this: The user can update any
There is an existing table in database where I want to update one column.
Im trying to add buttons or link to a gridview so i can edit/delete/update

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.