BGS5T ! | Telit Cinterion IoT Developer Community
January 25, 2016 - 11:20am, 2367 views
Hello, I have question regarding BGS5T. I am relatively new in java programming. I want to put database in BGS5T and with my midlet communicate with database(select,delete,add new record). I want to add tel numbers in database and when certain number calls number in BGS5T if that number is in database I would activate certain pin on BGS5T. What is the best way to do that? I have read that on internet that one the solutions for embeeded devices is sqlite database but I cannot connect to it. Ps: expected number of phone numbers in database is 500 records. Thanks in advanced.
Hello,
BGS5 module does not provide any SQLite engine so you'd probably need to implement it in Java or use some existing Java implementation. That would probably not be an efficient and optimal solution.
For your case the quite simple solution is needed. For example you could try the javax.microedition.rms package which is already a part of the provided Java API. The RecordStore is a very simple database which should be suitable for the use case that you have described.
Regards,
Bartłomiej
Thank you Bartłomiej
Best regards