Okay so I am writing a C# script that pulls data from an SQL Server and then within that same script inserts the pulled data into the already made table for the pulled data to go into. I would like bounce some ideas to see if anyone would also help me think about ways of doing this.
- Step 1: Create a connection to ctreeACE database
- Step 2: Insert retrieved data into correct table columns <- this is where I am stuck
So some of my ideas are:
- Store the live data being pulled into a list then read the list into the ctree table
- Create a for loop that obtains that live data being fed through and inserts into the table as it pulls data out row by row
I would love some feedback for my thinking so far!