Private password management, the major website passwords, can not be set the same. Account password too much to remember?
When you open this software, the number of incorrect passwords will reach the number you set. All the data in the software will be
automatically deleted. The software is completely without any network connection. All information is saved locally and it will not be
recovered after it is lost. Also ensure your password is safe.
- Easy to use
- Complete categories of passwords for easy management of various types of passwords
- No network connection (security)




Call method
Local small data storage, using json strings to save data, easy to use
#Support CocoaPods to introduce pod 'JxbDataMgr'
##call interface
/**
* Insert or update data
*
* @param tableName table name
* @param primaryKey primary key (model's attribute name)
* @param arrItems data (model must inherit JxbDataModel)
* @param block result callback
*
* @return
*/
- (void)insertOrUpdateData:(NSString*)tableName PrimaryKey:(NSString*)primaryKey arrItems:(NSArray*)arrItems block:(id)block;
/**
* Query data (via primary key)
*
* @param tableName table name
* @param PrimaryValue primary key value
* @param block result callback
*
* @return
*/
- (void)queryData:(NSString*)tableName PrimaryValue:(NSString*)PrimaryValue block:(id)block;
/**
* Query data (custom fields)
*
* @param tableName table name
* @param conditions condition (an array of JxbQueryConditions)
* @param block callback
*/
- (void)queryDataExt:(NSString*)tableName conditions:(NSArray*)conditions block:(id)block;
/**
* delete data
*
* @param tableName table name
* @param PrimaryValue primary key value
* @param block result callback
*
* @return
*/
- (void)deleteData:(NSString*)tableName PrimaryValue:(NSString*)PrimaryValue block:(id)block;
/**
* Clear data
*
* @param tableName table name
* @param block result callback
*
* @return
*/
- (void)dropData:(NSString*)tableName block:(id)block;