<div dir="ltr">Hello people!,<br>Im facing this problem:<br><br>var<br>  fTransPeliculas: TJSIDBTransaction;<br>  fTransAlmacen  : TJSIDBObjectStore;<br>  fSolicitud     : TJSIDBRequest; <br>begin<br><br>  (......) <br>   <br>  fTransPeliculas   :=  gMyDB.transaction(['peliculas'],'readwrite');<br>  fTransAlmacen     :=  fTransPeliculas.objectStore('peliculas');<br><br>  gInfo.clave       :=  gedtClave.value;<br>  gInfo.anno        :=  gedtFecha.value;<br>  gInfo.texto       :=  gedtTexto.value;<br><br>  fSolicitud        := fTransAlmacen.add(gInfo,'clave'); <br>  <br> but from browser consola I recieve the message:<br>       DataError: Data provided to an operation does not meet requirements.<br>       <br>but when use this alternative....<br>  asm<br>     fSolicitud = fTransAlmacen.add({id:$mod.gInfo.clave,nombre:$mod.gInfo.texto,fecha:$mod.gInfo.anno});<br>  end;<br>       <br>everything works!!!!<br>perhaps fSolicitud        := fTransAlmacen.add(gInfo,'clave'); is incorrepts ...then how it will be OK?<br><br>Thanks<br>pp<br clear="all"><br>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><pre style="color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;word-spacing:0px">MSc. Ing. Pedro Pablo Oviedo Vera
Dirección Técnica y Desarrollo
Empresa de Proyectos e Ingeniería del
Ministerio de la Agricultura.ENPA.
Boyeros y Conill, Piso 10 Edif MINAG
Telef. 884 7197
SIP:23000116</pre></div></div></div>