Is it somehow possible to move a 2 dimensional array directly into a database (SQL Server) without transforming it into a SQL statement?
I know there was some kind of direct connection in vb6.0, but I can not remember how it was done then, nor if it is still possible.
In VB6, you could avoid explicit
INSERTstatements by creating a recordset, inserting rows into it and calling.Update. This could be a “direct connection” if theCommandmode wasadCmdTableDirect.In ADO.NET, you can also do so, but there are many ways, such as Linq To Sql or Entity Framework. If you want it plain low-level vanilla VB6-like style, that’d probably be
DataAdapter.Updatemethod.