Definition
source
/**
* In order to control the size of the single insert, use DataFrame::chunkSize() method just before calling DataFrame::load().
*
* @param array<string, mixed>|Connection $connection
* @param array{
* skip_conflicts?: boolean,
* constraint?: string,
* conflict_columns?: array<string>,
* update_columns?: array<string>,
* primary_key_columns?: array<string>
* } $options - @deprecated use DbalLoader::withOperationOptions() instead
*
* @throws InvalidArgumentException
*/
to_dbal_table_insert(Connection|array $connection, string $table, array $options) : DbalLoader