Hello everyone,
I've got the following code:
Repeat these lines changeing the information about 50 times..
the question is.. would it be faster to put the Message, Pattern, and Query into an Arraylist, and then iterate though the Array list, calling the DataDump funtion?
The PogoWolf
I've got the following code:
Code:
Message = "Craft: Created..."
Pattern = "\[(?<Date>\S+)\s{1}(?<Time>\S+)\]\s{1}You have created (?<Amount>\d+)\s{1}(?<Item>.+)\."
Query = "INSERT INTO Craft (Date_Time, ToonID, ItemID, Amount, Created) Values (#[Date] [Time]#, [ToonID], [Item], [Amount], 1);"
DataDump (Message, Pattern, Query)
Repeat these lines changeing the information about 50 times..
the question is.. would it be faster to put the Message, Pattern, and Query into an Arraylist, and then iterate though the Array list, calling the DataDump funtion?
The PogoWolf