ZarahDB..::..CsvFolderInsert Method

Inserts records from a folder of CSV files. This method does not support transactions. The values are written directly to increase speed.

Namespace:  ZarahDB_Library
Assembly:  ZarahDB_Library (in ZarahDB_Library.dll)

Syntax


public static bool CsvFolderInsert(
	Uri csvFolder,
	List<string> columns,
	string keyColumn,
	string fieldSeparator,
	string encloser,
	string lineTerminator,
	string commentLineStarter,
	Uri instance,
	string table
)
Public Shared Function CsvFolderInsert ( _
	csvFolder As Uri, _
	columns As List(Of String), _
	keyColumn As String, _
	fieldSeparator As String, _
	encloser As String, _
	lineTerminator As String, _
	commentLineStarter As String, _
	instance As Uri, _
	table As String _
) As Boolean
public:
static bool^ CsvFolderInsert(
	Uri^ csvFolder, 
	List<String^>^ columns, 
	String^ keyColumn, 
	String^ fieldSeparator, 
	String^ encloser, 
	String^ lineTerminator, 
	String^ commentLineStarter, 
	Uri^ instance, 
	String^ table
)

Parameters

csvFolder
Type: Uri
The CSV folder.
columns
Type: List<(Of <(<'String>)>)>
The columns.
keyColumn
Type: String
The key column.
fieldSeparator
Type: String
The field separator.
encloser
Type: String
The encloser.
lineTerminator
Type: String
The line terminator.
commentLineStarter
Type: String
The comment line starter.
instance
Type: Uri
The instance.
table
Type: String
The table.

Return Value

true if successful, false otherwise