Results 1 to 5 of 5

Thread: Help/suggestions for Bible search program

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2007
    Posts
    63

    Question Help/suggestions for Bible search program

    Hail to All,

    I am about to start on a Bible search program and didn't know the best way to go about it. I know there are many out there but this is just a project that I've always wanted to try. Here is what I'm wanting to do:

    search for a word and display the verses that contain that word.
    Search for a phrase same as above.
    Add notes to a verse.
    Goto book, chapter, verse directly.
    And many more features

    right now I'm trying to figure out the best way to store the book's text. Should I put it in an Access database file? Then the question is would they have to have access or would my program still be able to use the file type?

    I figure I would create a tablethat contained the following columns:


    Book_Name
    Chapter_Number
    Verse_Number
    Verse_Text
    User_Notes


    Any advice or suggestions would greatly be appreciated.

    Mythos

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,222

    Re: Help/suggestions for Bible search program

    If you want advice on database design then your post belongs in the Database Development forum. You should have separate tables for books, chapters, verses and quite possibly notes too. Your word search would be very slow unless you pre-built an index because you'd have to perform a LIKE query on every single verse. To make it usable I think you'd have to have a table for words and then a word:verse table too. Your search would then just find the word in the word table and then get the verses that contain it directly from the word:verse table. Creating this index is feasible because I'm fairly sure the words in the Bible aren't going to change too often.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    Member
    Join Date
    Jan 2007
    Posts
    63

    Smile Re: Help/suggestions for Bible search program

    Thanks so much for your quick response. This is not just a database question it was more of a whole application question. Thanks so much on the word:verse table that is awesome. How about the database itself? Can I use an access database file if access is not on the machine? Or should I use another type not that I know of one.

    Thanks again for you help.

    Mythos

  4. #4
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,222

    Re: Help/suggestions for Bible search program

    No, the Access application is not required in order to use an Access database in a VB.NET app. There are other options but Access will do the job.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  5. #5
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: Help/suggestions for Bible search program

    As your question is not based around code etc, it does not belong in the VB.Net forum - thread moved to Database Development forum (the General Developer forum might also be apt, but this seems best at the moment)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width