I am implementing MonetDBe as an integrated DB in my server. I want to have the ability to load bulk data into the database. Looking at the MonetDB documentation there is a CopyInto SQL command that allows the loading of bulk data from csv files.
As MonetDBe is embedded in my application I would ideally like to bulk load data into MonetDB from internal data arrays.
My data will normally come from my client application, which sends the data over a WebSocket. This means that I receive the data as a const Char Array. What would be the quickest way of loading this data into MonetDB. i.e. is there a CopyInto Command I could use, or would I have to use the standard select into the command>