9,625 questions
-1 votes
0 answers
33 views
Connecting SSAS 2019 on prem with Snowflake
I have a Tabular model in SSAS 2019 on prem. The data source is SQL Server running on the same machine. I need to reroute the data source to Snowflake. I created a legacy data source using an ODBC (64-...
0 votes
0 answers
32 views
How can I connect to HFSQL C/S using python on Linux?
I am trying to connect to a legacy HFSQL (HyperFileSQL) Client/Server database using Python (pyodbc) on a Linux Ubuntu machine. I have followed the official documentation to install the specific ODBC ...
2 votes
1 answer
70 views
CodeIgniter 3 odbc affected rows
Running PHP 8. I have just upgraded CodeIgniter from 3.0.4 to 3.1.13. Before the upgrade, the affected_rows() worked fine and gave me the correct quantity. Now it just gives me a TypeError. This is a ...
4 votes
3 answers
155 views
Connecting to Excel from PHP using PDO
I am connecting to an Excel file from PHP via PDO. When executing a query, Excel returns data, but it defines the first row of results as column names. How do I make Excel return all rows, including ...
Advice
0 votes
1 replies
61 views
SAS Snowflake ODBC authentication using Key pair
We are planning to switch from password-based authentication to key-pair authentication for SAS to Snowflake connection. Our current requirement is: 1. Overnight batch/service account: use key-pair ...
0 votes
0 answers
70 views
Power BI DirectQuery to Redshift: ODBC error with pg_catalog.date_add(...) does not exist
I'm using Power BI Desktop with Amazon Redshift in DirectQuery mode. Data loads initially (sometimes at least / sometimes it has errors), but when I scroll down in a visual (e.g., table), I eventually ...
2 votes
0 answers
131 views
C++/Qt: QODBC always ignores first row
I am doing an app for a client and he wants to read data from .xlsx, .csv and .xls. For CSV files, I have already created a data parser, and for XLSX files, I had used QXlsx. With large files (>1M ...
0 votes
0 answers
38 views
Informix ODBC: fetch user-defined OPAQUE column as internal binary (SQL_C_BINARY) without server-side casts
I am trying to fetch a user-defined opaque column (opaque_col) via the ODBC driver using SQL_C_BINARY to access the internal binary format: const char* query = "SELECT opaque_col FROM opaque_test&...
0 votes
1 answer
89 views
Reading SQL_NUMERIC_STRUCT via ODBC from SQL Server loses decimal places
In SQL Server I have defined a table with column: test_scale (numeric(10,2), null) and inserted a row with value -123456.78. In ODBC code from C: SQLExecDirect(hstmt, (SQLCHAR*)"SELECT TOP 1 ...
2 votes
1 answer
58 views
Error with MS Excel power Query ODBC Context
I have a parameter coming in from the excel table that is formulated as date time. 7/28/2025 12:00:00 AM name BeginDate I am trying to filter the source data which has a field called TransDate before ...
0 votes
0 answers
66 views
MacOS launchctl setenv DYLD_LIBRARY_PATH
Platform MacOs Sequoia 15.5. My objective is to enable an application to find a dynamic library. My plan is to use launchctl to set the environment variable DYLD_LIBRARY_PATH and then lanch the ...
1 vote
0 answers
119 views
Configure MariaDB DSN using Add-OdbcDsn in PowerShell
I'm trying to configure a MariaDB ODBC DSN automatically in PowerShell my code so far is this: $DriverName = (Get-OdbcDriver -Name "MariaDB*" | Where-Object Platform -eq "64-bit")....
0 votes
0 answers
24 views
VB.NET 3.5 OdbcDataAdapter.Fill causes OverflowException after moving from Windows 10 x86 to Windows 11 x64
I’m maintaining a legacy VB.NET 3.5 Windows Forms app that worked perfectly on Windows 10 32-bit using MySQL ODBC Connector 5.1/5.3. Recently, we migrated to a Windows 11 64-bit machine. Without ...
2 votes
2 answers
171 views
Trying to bind a string column for table valued parameter using ODBC
Like said in the title i am trying to bind a string column for a table valued parameter using ODBC. So far i created a table like that: CREATE TABLE [dbo].[TVPItem] ( ItemNo INT IDENTITY(1,1) ...
0 votes
0 answers
30 views
How to connect to a Oracle@Azure via VM using ODBC linked service, using Azure Synapse Notebook?
We have an ODBC linked service on Azure Synapse which connects to a VM which in turn connects to an Oracle@Azure Database. The linked service has been tested successfully on Azure Synapse. We need to ...