@langtoi
The developer is aware of this problem.
While this problem remains relevant, you can replace the double quote with a single quote before parsing the string, and then perform the reverse replacement. All this can be done using the "Replace string" action.
Multi parse csv string
-
@to-nice said in Multi parse csv string:
Hello everyone, what is the fastest way to achieve this?
It depends on which database server you are using.
If you are using MariaDB, the fastest way to insert data into the database is by using the command LOAD DATA INFILE.
- Enable local_infile in my.cnf on your server:
[mysqld] local_infile=1- Sql:
LOAD DATA LOCAL INFILE '/path/to/your/file.csv' INTO TABLE your_cool_table FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES; -- Skips the header row if exists -
@sergerdn A quick question: with my other bot, when I have 100 accounts using the 'perfect fingerprint,' the bot completely freezes. Would using an external database help avoid this issue?
Wiki... I lost a post that explained how to set up threads on the graphical interface... Do you happen to have it handy? I remember it made a blue selection bar appear -
@to-nice said in Multi parse csv string:
@sergerdn A quick question: with my other bot, when I have 100 accounts using the 'perfect fingerprint,' the bot completely freezes. Would using an external database help avoid this issue?
I don't know.