I'm developing a simple script to download some data to a DB what I have is this:
{
import sqlite3, time
print "Sistema Cargas minutas"
print "Version 0.1"
conn = sqlite3.connect('db_pagos_minuta.sqlite3')
cur = conn.cursor()
salir = 's'...
I have these values inside a case:
case 'upgrade':
$alm->__SET('acronimo', $_REQUEST['acro']);
$alm->__SET('cantidad', $_REQUEST['cantidad']);
$alm->__SET('compania', $_REQUEST['comp']);
$model->Ac...
My question is this:
I'm doing a CRUD on Android and I have a problem on the UPDATE. As you can see, I want to collect all the data in a Bundle and then print them with setText () in the update form. The problem is that the last data, the displa...