We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to process Excel (.xlsx) files the program fails with an "Invalid row: 0" error.
Detected file type: Excel for file: 'ukpn-secondary-sites.xlsx' Error: Custom { kind: Other, error: "Error processing Excel file 'ukpn-secondary-sites.xlsx': IO Error: GDAL Error (1): Invalid row: 0" }
create table ukpn as select * from st_read( 'ukpn-secondary-sites.xlsx', open_options=['HEADERS=FORCE'] );
Result: Same error persists
Linked to the issue I raised here as it relates to a small library I maintain: enmeshed-analytics/duckdb-postgis#3 (comment)
The Excel file is processed using st_read in the create_data_table function:
FileType::Excel => { format!( "CREATE TABLE data AS SELECT * FROM st_read('{}');", self.file_path ) }
Is this something that anyone could help me with?
I have attached the xlsx file I have been trying to read here: ukpn-secondary-sites.xlsx
Thanks! Chris
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Invalid Row Error When Processing Excel Files
Description
When attempting to process Excel (.xlsx) files the program fails with an "Invalid row: 0" error.
Error Message
Attempted Solutions
Result: Same error persists
Current Implementation
Linked to the issue I raised here as it relates to a small library I maintain: enmeshed-analytics/duckdb-postgis#3 (comment)
The Excel file is processed using st_read in the create_data_table function:
Environment
Is this something that anyone could help me with?
I have attached the xlsx file I have been trying to read here: ukpn-secondary-sites.xlsx
Thanks!
Chris
The text was updated successfully, but these errors were encountered: