Possibility of this depends on so called auth mode assigned to record store upon creation.
I need this information to know whether my application is safe.
To make sure that MIDlets from other suites can not delete your record store, use AUTHMODE_PRIVATE when creating record store - in that sense, this will be your "safe" option.
For more details, refer to API documentation of the method RecordStore.openRecordStore(String,boolean,int,boolean):
public static RecordStore openRecordStore(String recordStoreName,
boolean createIfNecessary,
int authmode,
boolean writable)
throws RecordStoreException,
RecordStoreFullException,
RecordStoreNotFoundException
Open (and possibly create) a record store that can be shared with other
MIDlet suites. The RecordStore is owned by the current MIDlet suite.
The authorization mode is set when the record store is created, as follows:
AUTHMODE_PRIVATE - Only allows the MIDlet suite that created the
RecordStore to access it. This case behaves identically to
openRecordStore(recordStoreName, createIfNecessary).
AUTHMODE_ANY - Allows any MIDlet to access the RecordStore. Note that
this makes your recordStore accessible by any other MIDlet on the device.
This could have privacy and security issues depending on the data being shared.
Please use carefully...
Parameters:
...
authmode - the mode under which to check or create access. Must be one
of AUTHMODE_PRIVATE or AUTHMODE_ANY. This argument is ignored if
the RecordStore exists...