SQL::Translator::Parser::xSV(3pm) User Contributed Perl Documentation SQL::Translator::Parser::xSV(3pm)

SQL::Translator::Parser::xSV - parser for arbitrarily delimited text files

  use SQL::Translator;
  use SQL::Translator::Parser::xSV;
  my $translator  =  SQL::Translator->new(
      parser      => 'xSV',
      parser_args => { field_separator => "\t" },
  );

Parses arbitrarily delimited text files. See the Text::RecordParser manpage for arguments on how to parse the file (e.g., "field_separator", "record_separator"). Other arguments include:

Field names will automatically be normalized by "SQL::Translator::Utils::normalize_name".

Darren Chamberlain <darren@cpan.org>, Ken Y. Clark <kclark@cpan.org>.

Text::RecordParser, SQL::Translator.

2024-01-20 perl v5.38.2