-
-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
Error on export: Multi-valued field cannot be used in ORDER BY clause #61
Comments
I also had this issue and have implemented a change to support this. Essentially using the XML import/export approach. Changes are on https://github.com/hangie/msaccess-vcs-integration/tree/feature/import_data_update Have a look and if you like it, then I can go through the pull requests to get it integrated. |
I'll assume the merged change fixed this, let us know if it didn't! |
No, this one isn't closed until I send it back. The merge was on my repository - sorry. I'll add a pull request for this one shortly. |
Should fix “all fields have short text data type” in issue msaccess-vcs-integration#61.
It looks like it isn't exporting the multi-valued field data correctly.
I'm getting the error in
VCS_ExportTableData
on this line:Set rs = CurrentDb.OpenRecordset(TableExportSql(tbl_name))
Stepping through, it looks like it is building the SQL query, but you can't order by a multi-value field.
The issue is specifically a value list - as in each option is just typed in row source.
Anyone know how to fix this?
The text was updated successfully, but these errors were encountered: