I figured it out nvm. I just set this "\w{32}" as the regex but I actually clicked on the w/ button and then typed in the 32. Seems to work fine
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.