Problemas al borrar registro en plugin De ANTON

Questions, announcements and information regarding PlugIns for NeoAppBuilder

Moderator: Neosoft Support

Locked
gusgusl
Posts: 263
Joined: Fri Mar 12, 2010 12:44 pm

Problemas al borrar registro en plugin De ANTON

Post by gusgusl »

No puedo borrar un registro de la base de datos mediante el plugin de "anton", quien puede ayudarme? quizas estoy haciendo algo mal
I can not delete a record from the database using the plugin " anton " who can help me? Maybe I 'm doing something wrong

Las siguientes instrucciones son las que uso
The following instructions are those that use

lo primero que hago es hacer la búsqueda
the first thing I do is make the search


bakSearchTableMySQL "Ventas" "Cedula='[Cedula]' AND Vendedor='[Vendedor]'" "[Lista]"
SetVar [Cliente] [Lista(0)('Cliente')]

luego borro el registro mediante la siguiente instrucción:
then delete the record using the following statement :

bakGetRowTableMySQL "Ventas" 1 [JSON]
bakDelStrTableMySQL "Ventas" [Resultado]

La variable [JSO] me muestra el siguiente resultado:
The variable [JSON] shows me the following result:


[{"Cedula":"24569851","Vendedor":"Daniela Rodriguez","Id":"19","Cliente":"undefined"}]

Lo cual es correcto ya que es el registro que quiero borrar.
The result is correct because this record is that I want to erase.


Y la variable [Resultado] me muestra lo siguiente:
And the variable [Resultado] shows me the following:


[{"Cedula":"24569851","Vendedor":"Daniela Rodriguez","Id":"19","Cliente":"undefined"}]

No deberia mostrarme esta variable "True" o "False" como respuesta?
The response of this variable should not be " True" or " False"?
dglojnar
Posts: 130
Joined: Sun Apr 03, 2005 10:52 pm

Re: Problemas al borrar registro en plugin De ANTON

Post by dglojnar »

Please, this is english forum, write messages on english :-)
dglojnar
Posts: 130
Joined: Sun Apr 03, 2005 10:52 pm

Re: Problemas al borrar registro en plugin De ANTON

Post by dglojnar »

Oops. sorry, I just see english translation below spanish:-)

Sorry, mea culpa:-)
User avatar
anton
Posts: 64
Joined: Fri Oct 19, 2012 9:21 pm

Re: Problemas al borrar registro en plugin De ANTON

Post by anton »

I'm sorry, I was very busy .
For yet remove command , as well as a number of others can only be performed on the tables created in the plugin.
gusgusl
Posts: 263
Joined: Fri Mar 12, 2010 12:44 pm

Re: Problemas al borrar registro en plugin De ANTON

Post by gusgusl »

No entendi muy bien, a ver si alguien que entiende mejor el ingles me lo puede explicar
Yo entendi que solo se pueden borrar registros de tablas creadas mediante el plugin?

Y si entendi bien,mi pregunta es si es una limitacion de la version de prueba porque si me permite agregar registros a tablas que no fueron creadas mediante el plugin
Locked