Answers for "whenever i'm passing data from datatable to sql table for large number in table it is storing with e+"

SQL
0

whenever i'm passing data from datatable to sql table for large number in table it is storing with e+

change the datatype for every column of datatable and on sql side by using 
convert or cast function you can change it to another type
DataTable dt = new DataTable();
dt.columns.Add(1, typeof(string));
dt.columns.Add(2, typeof(string));
Posted by: Guest on May-05-2021

Code answers related to "whenever i'm passing data from datatable to sql table for large number in table it is storing with e+"

Code answers related to "SQL"

Browse Popular Code Answers by Language