database - Smartface IS Secure Data-Fields don't work -


i have created local table , inserted data. long don't use is secure fields works fine. when use is secure fields encrypted text these fields. seems decrypt function missing. how solve this?

for accessing fields use:

var field_value = data.execute("select f3 testtable rowid = 3;"); alert("row 3:" + field_value); 

actually, should encrypted values if try kind of sql execute statement, regardless how many rows selected issecure. mean, if there issecure field, should seen encrypted. selecting rows insecure or of them insecure, shouldn't change anything.

the new release of smartface app studio available right now. (http://account.smartface.io/account/login?returnurl=%2f )

i tested case, works fine new release.

by way, if want reach actual value in table, try below code :

data.mydataset.move(2);  //lets reach same row wrote above move alert("row 3 : " + data.mydataset.f3); 

you should write dataset's name instead of mydataset.


Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -