Posts by Getulio • 11 points
2 posts
-
0
votes3
answers9343
viewsA: Check if a date is valid
public static class ValidarData { public static bool DataCompleta(string data) { Regex ok = new Regex(@"(\d{2}\/\d{2}\/\d{4} \d{2}:\d{2})"); return ok.Match(data).Success; } public static bool…
-
1
votes1
answer47
viewsQ: Is it feasible to use datatable copyBulk for DBMS data loading?
I went through an experience in doing a large load of data from a text file, which needed to be criticized before writing to BD. I used Datatable with copybulk. I realized that the data load in…