@spa3212 said in Reading input data from csv file of non english:
@Fox so don't know for csv file this doesn't work, but for txt file it does :) anyways thans.
This works for any text file. Attach the file for the test
@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.
[mysqld]
local_infile=1
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.