postgresql

  1. Sketchup Galaxy

    Question How to take datatable values into postgresql

    I´m trying to take the entire datatable with its values to postgresql but I seem to do something wrong. Code is as follows: foreach (DataRow row in dt_IS.Rows) { using (NpgsqlCommand cmdCopy = new NpgsqlCommand("INSERT INTO " + Table + " VALUES(@num1));", Conn)) { object num1 =...
Back
Top Bottom