Hi, I have a pcap file and I have converted it to a csv file by tshark command and load it into a table in MySQL database.
Everything works okay, but I have a problem in frame.time field It does not appear in the database and instead appear zeros, Although in the csv file does not exist zeros there is a time format like this
how I can get a time format in the data base like time format in csv file. thanks in advance. asked 12 May '16, 11:10 Khadidja Kha... edited 24 May '16, 13:23 JeffMorriss ♦ |
One Answer:
Edit: withdrawing what I've posted as an Answer, as the correct Answer can be found here.
As things stand right now, you cannot influence what format tshark will use to print the So for the time being, you'll need to use some post-process of the output of tshark to convert the timestamp format output by tshark to a format the database understands.
answered 12 May '16, 13:48 sindy edited 13 May '16, 10:58 |
thanks :).