I want to share an intriguing experience I've had along with a solution, although it's not my preferred one. Essentially, we utilize a MYSQL and ODBC connection to MS Access, running a series of demanding queries. Most computers handle these queries seamlessly, except for two, where they throw a RUN-TIME ERROR 3146: ODBC CALL FAILED. These computers are newer, which initially puzzled me. Despite scouring through numerous solutions on Stack Overflow, none seemed to resolve the issue. Upon comparing the functioning computers with the problematic ones, I discovered a crucial disparity: the MariaDB ODBC driver versions. The working computers were equipped with MariaDB ODBC driver 3.1.17, whereas the newer ones had the latest 3.1.20 installed. Surprisingly, reverting to the older 3.1.17 driver on the new computers resolved the issue entirely. However, I'm apprehensive about this workaround, as it's merely postponing the inevitable need to upgrade to newer versions. Does anyone have insights into why this discrepancy occurred? Perhaps there are updates required on the server side that could mitigate this issue in the long run? Any input would be greatly appreciated.
mysql with odbc to ms access - runtime error 3146 (odbc call failed)
32 views Asked by Rok Sabadin At
1
There are 1 answers
Related Questions in MARIADB
- `ColumnNotFound("id")` when inserting with SQLx
- What's supposed to be the problem in this query?
- Can't Fix Mariadb & Mysql ERROR 2002 (HY000): Can't connect to local server through socket '/tmp/mysql.sock' (2) On MacOs
- my spring boot app shuts down as soon as i open it
- EntityFrameworkCore.DbUpdateException: Unable to delete row, SQL Syntax error
- MariaDB incorrect dates
- 'pip install mariadb' states that it cannot find include file 'mysql.h' on my Windows 10 dekstop
- optimizing my.cnf for specific use case with MariaDB
- MariaDB service crashes since updating to Laravel 11 oom-kill possible memory leak in Laravel 11?
- mysql with odbc to ms access - runtime error 3146 (odbc call failed)
- Can I extend a shared docker-compose service twice (multiple times)?
- Appropriate way to convert unsanitized varchar from Base64 to Hex within MariaDB / MySQL
- Upgrading MariaDB 10.11 to 11.3
- Add dynamic categories to pie chart in Apache Superset?
- How do I start mariadb without the option --skip-grant-tables?
Related Questions in RUNTIME-ERROR
- Java, Telegram Bot runtime problems
- Getting an error in Socket.io wordle project
- How do I fix VERR_INVALID_HANDLE (0X80004005) Error in VirtualBox?
- Unhandled Runtime Error when uploading images on next JS project. got this error Check the render method of `FileUpload`
- next js route groups issue
- Excel VBA error 1004 on PDF export - not a path issue
- I am getting "RuntimeWarning: invalid value encountered in sqrt" error in my code (RK4 method to solve Raman ODE model)
- mysql with odbc to ms access - runtime error 3146 (odbc call failed)
- I am building next js application the page works on local but when I deploy it in Vercel following error occurs
- OneDrive download link to a direct link not working, auth requested
- Error generated by MicroSoft JET database, engine could not delete from specified tables
- Excel vba sort Run-time error ‘1004’: The sort reference is not valid. Error with second of consecutive sorts with custom sort order
- stack overflow error occurs only when converting to a type with the Error method defined
- Unhandled Runtime Error in NextJS, Clerk, and MongoDB project
- Cannot find module 'node:http' in node module
Related Questions in ODBC
- Snowflake ODBC xdg-open Missing X server or $DISPLAY
- Stata + ODBC driver requires login too often
- mysql with odbc to ms access - runtime error 3146 (odbc call failed)
- Informix Golang client package
- Access won't open past the splash screen
- Can't make sense why ConnectionError: Data source name not found and no default driver specified
- Issue interacting via dbplyr with remote SQL tables probably since odbc or DBI or dbplyr package update
- CentOS/RHEL download dependencies
- Error connecting to SQL Server using pyodbc: Data source name not found and no default driver specified
- How to Implement Multi-Parameter Queries in SSRS Report Builder with Databricks ODBC?
- C++ Poco ODBC issue with setting char type in sql
- Firbird DB multiple connections problem using BDE+ODBC connection
- SQL Server configuration giving [ODBC Driver 17 for SQL Server TCP Provider: Error code 0x2746
- connecting to postgres using ODBC windows with gssencmode not working
- Providex ODBC CONCAT issue
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I don't have enough rep to comment thus, adding as answer.
To answer your question, you are using two different products which have not promised to be compatible.