Re: [web2py] Re: How to debug appadmin CSV uploading

2020-06-13 Thread Jon Subscripted
Thanks Dave! El El sáb, 16 may 2020 a las 23:18, Dave S escribió: > > > On Friday, May 8, 2020 at 12:41:16 PM UTC-7, Jonsubs wrote: >> >> Thanks! >> >> El El sáb, 2 may 2020 a las 3:10, Andrew Rogers >> escribió: >> >>> Can't help you Jon sorry. I tried to upload a while back but got a >>>

Re: [web2py] Re: How to debug appadmin CSV uploading

2020-05-16 Thread Dave S
On Friday, May 8, 2020 at 12:41:16 PM UTC-7, Jonsubs wrote: > > Thanks! > > El El sáb, 2 may 2020 a las 3:10, Andrew Rogers > escribió: > >> Can't help you Jon sorry. I tried to upload a while back but got a >> different issue (see >>

Re: [web2py] Re: How to debug appadmin CSV uploading

2020-05-08 Thread Jon Subscripted
Thanks! El El sáb, 2 may 2020 a las 3:10, Andrew Rogers escribió: > Can't help you Jon sorry. I tried to upload a while back but got a > different issue (see > https://groups.google.com/forum/#!topic/web2py/03-7xKAioD8) So maybe > that feature has fallen into disuse? > > > On Friday, 1 May

[web2py] Re: How to debug appadmin CSV uploading

2020-05-01 Thread Andrew Rogers
Can't help you Jon sorry. I tried to upload a while back but got a different issue (see https://groups.google.com/forum/#!topic/web2py/03-7xKAioD8) So maybe that feature has fallen into disuse? On Friday, 1 May 2020 16:57:38 UTC+10, Jonsubs wrote: > > Hi everyone, > I'm trying to upload a

[web2py] Re: How to debug appadmin CSV uploading

2020-05-01 Thread Clemens
Hi Jon, I prefer to upload csv files to the database via the python console, starting it as follows: python **/web2py.py -S ** -M -P There you can import the csv as follows (assuming your database is reference by db, i.e. db = DAL(...)): filename = **/**.csv'; print(filename) *python2:*