Álvaro Justen

Results 272 comments of Álvaro Justen

@InFog, thanks for your PR and sorry for the delay to answer! I'd prefer to do not use `localeconv()` directly because of the `rows.locale_context` context manager. The tests really need...

The easiest solution for the sequence update problem is to take `schema` and `table_name`, as in: ```python table_name = ... # (got from the user) if '.' in table_name: schema,...

About sequences, @juliano777 sent this file: ```sql -- Criação explícita da sequence: CREATE SEQUENCE sq_campo; -- Criação da tabela de teste: CREATE TABLE tb_sequencia ( id serial primary key, campo...

https://tapoueh.org/blog/2010/02/resetting-sequences.-all-of-them-please/

Check if can convert text like these: http://www.w3.org/TR/2015/WD-tabular-data-model-20150416/#bidirectionality-in-csv-files

Sorry, only today I noticed I didn't answer your question. I think it would be a GREAT idea to support jsonl! Could you implement it?

@rjdp, for text files chardet could be better detecting the file type, but there are some cases in which chardet wrongly detects an encoding - for this reason I prefer...

@cuducos, could you please check if information provided here solves your problem also?

@rjdp, You can see on this video I made (it's in Portuguese but you can understand the code): https://youtu.be/BTMj5bDXByc?t=412 (look the code history also) I still need to figure out...

@rjdp, I don't have this information in details for you. Look the example in the video, check the mime types supported by `file` and do your tests. ;)