On Wednesday, October 14, 2015 at 5:31:59 PM UTC-7, Dave S wrote:
>
>
>
> On Wednesday, October 14, 2015 at 3:27:31 PM UTC-7, Alex Glaros wrote:
>>
>> does anyone see anything wrong with the update syntax?
>>
>> def utility_change_column_name(): #used once in a while by programmer.
>> Not used b
On Wednesday, October 14, 2015 at 3:27:31 PM UTC-7, Alex Glaros wrote:
>
> does anyone see anything wrong with the update syntax?
>
> def utility_change_column_name(): #used once in a while by programmer. Not
> used by users.
> for r in db.PostalCode:
> db(db.PostalCode).update(r.cou
does anyone see anything wrong with the update syntax?
def utility_change_column_name(): #used once in a while by programmer. Not
used by users.
for r in db.PostalCode:
db(db.PostalCode).update(r.countryCode = r.countryCodeFromGeoNames)
return dict()
am getting
keyword can't be
try:
return dict()
On Wed, Oct 14, 2015 at 6:43 PM, Alex Glaros wrote:
> how to get function to return nothing?
>
> Goal is simply to avoid pages of records on html page as function runs
>
> def utility_change_column_name(): #used once in a while by programmer.
> Not used by users.
> for r in
how to get function to return nothing?
Goal is simply to avoid pages of records on html page as function runs
def utility_change_column_name(): #used once in a while by programmer. Not
used by users.
for r in db.PostalCode:
db((r.update(r.countryCode = r.countryCodeFromGeoNames))
retu
5 matches
Mail list logo