I want to convert both of the following columns to integer (they were placed as text in the SQlite db) as soon as I select them.
string sql4 = "select seq, maxLen from abc where maxLen > 30";
I think it might be done like this..(using cast)
string sql4 = "select cast( seq as int, maxLen as int) from abc where maxLen > 30";
Not sure if it's right as I seem to be getting a syntax error.
How would I also convert the text to double