JDBC Driver for CSV

Build 22.0.8462

DELETE SELECT Statements

To perform multiple deletes in a single request to CSV, first use the INSERT INTO syntax to create an in-memory temporary table of data to be deleted. Once you have all of the data you want to delete added to temporary table, use DELETE FROM syntax to delete data from the live table in CSV. This functionality is also available via the standard Batch Processing API available in JDBC. This functionality is also available via the standard Batch Processing API available in JDBC.

Populate the Temporary Table

The temporary table you are populating is dynamic and is created at run time the first time you insert to it. Temporary tables are denoted by a # appearing in their name. When using a temporary table to delete, the temporary table must be named in the format [TableName]#TEMP, where TableName is the name of the table you are inserting to. For example:

INSERT INTO NorthwindOData#TEMP (Id) VALUES ('AX1000001');
INSERT INTO NorthwindOData#TEMP (Id) VALUES ('AX1000002');
INSERT INTO NorthwindOData#TEMP (Id) VALUES ('AX1000003');

This creates a temporary table called NorthwindOData#TEMP with one column and three rows of data. Since type cannot be determined on the temporary table itself, all values are stored in memory as strings. They are later converted to the proper type when they are submitted to the NorthwindOData table.

Delete from the Actual Table

Once your temporary table is populated, it is now time to insert to the actual table in CSV. You can do this by performing a DELETE from the actual table and selecting the input data from the temporary table. For example:

DELETE FROM NorthwindOData WHERE EXISTS SELECT Id FROM NorthwindOData#TEMP

In this example, the full contents of the NorthwindOData#TEMP table are passed into the NorthwindOData table. This results in fewer requests being submitted to CSV since multiple deletes may be submitted with each request, which is much better for performance if you have many records to delete.

Results

The results of the query are stored in the LastResultInfo#TEMP temporary table. This table is cleared and repopulated the next time data is modified by passing in a temporary table. Please be aware that the LastResultInfo#TEMP table has no predefined schema. You need to check its metadata at run time before reading data.

Temporary Table Life Span

Temporary tables only last as long as the connection remains opened. When the connection to CSV is closed, all temporary tables are cleared, including the LastResultInfo#TEMP table.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462