Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

glyphs Table Creation? #2759

Open
YoussefHachicha opened this issue Jul 3, 2024 · 0 comments
Open

glyphs Table Creation? #2759

YoussefHachicha opened this issue Jul 3, 2024 · 0 comments

Comments

@YoussefHachicha
Copy link

not an issue but I encountered this function in the AyahInfoDatabaseHandler class

private Cursor getVersesBoundsCursorForPage(int page, boolean withGlyphData) {
    String[] columns = withGlyphData ?
        new String[]{COL_PAGE, COL_LINE, COL_SURA, COL_AYAH, COL_POSITION, MIN_X, MIN_Y, MAX_X, MAX_Y, GLYPH_TYPE} :
        new String[]{COL_PAGE, COL_LINE, COL_SURA, COL_AYAH, COL_POSITION, MIN_X, MIN_Y, MAX_X, MAX_Y};

    return database.query(GLYPHS_TABLE,
        columns,
        COL_PAGE + "=" + page,
        null, null, null,
        COL_SURA + "," + COL_AYAH + "," + COL_POSITION);
  }

here we are getting something from the GLYPHS_TABLE, when I tried to look for the GLYPHS_TABLE I wasn't able to find where have we created the table and where have we added rows to it, which made me confused.

@YoussefHachicha YoussefHachicha changed the title Table Creation glyphs Table Creation Jul 3, 2024
@YoussefHachicha YoussefHachicha changed the title glyphs Table Creation glyphs Table Creation? Jul 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant