Click here to Skip to main content
15,885,216 members
Everything / Access

Access

Access

Great Reads

by Wessel Beulink
Azure API Center Portal streamlines API management; Visual Studio Code extension enhances collaboration and productivity within Azure ecosystem.
by Jani Giannoudis
Structured approach to ASP.NET Localization
by DomGries
Download and install any dependency such as .NET, Visual C++ or SQL Server during your application's installation!

Latest Articles

by Wessel Beulink
Azure API Center Portal streamlines API management; Visual Studio Code extension enhances collaboration and productivity within Azure ecosystem.
by Jani Giannoudis
Structured approach to ASP.NET Localization
by DomGries
Download and install any dependency such as .NET, Visual C++ or SQL Server during your application's installation!

All Articles

Sort by Score

Access 

20 Feb 2024 by Patrice T
Quote: I can save the data contained in the textboxes to an Access database but there is a problem when the text contains single (') or double quotes ("). This is probably linked to the way you are trying to save the text. You should read about...
30 Nov 2023 by Andre Oosthuizen
Your error suggests that your Data Source Name (DSN) is not found, and there is no default driver specified by you on where to find it. When using Python, the 'pyodbc' library is needed to connect to the Access database. Make sure that you have...
5 Dec 2023 by Andre Oosthuizen
This is unfortunately what happens if you ask ChatGPT to create the code without understanding the how, when, why and what from it. There are many tutorials online that you can use to make this an easy task, if you are willing to put the effort...
20 Feb 2024 by Dave Kreskowiak
The reason your current code doesn't work is because you're using string concatenation to build the SQL INSERT query. NEVER DO THIS!!! Use parameterized queries instead. This way, the double quotes in your text get escaped properly instead of...
1 Feb 2024 by Wessel Beulink
Azure API Center Portal streamlines API management; Visual Studio Code extension enhances collaboration and productivity within Azure ecosystem.
8 Feb 2024 by OriginalGriff
This is the same question you asked earlier: I want to make a database project to recording running hours for machines[^] While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We...
16 Aug 2023 by Jani Giannoudis
Structured approach to ASP.NET Localization
30 Nov 2023 by Basant Rajpurohit
I try to connect a password protected access 2007 database file, password is 'AaBbCc'. I am getting an error - Traceback (most recent call last): File "E:\MasterMindAcc\Pyh\Login.py", line 45, in conn =...
5 Jan 2024 by Maciej Los
If you want to add linked table to MS SQL Server, you need to add ODBC data source first: Administer ODBC data sources - Microsoft Support[^] How to link table? Please read this: Import or link to data in an SQL Server database - Microsoft...
4 Jan 2024 by Member 7735818
Hello all, Seeking guidance on linking Microsoft Access 2021 to SQL Server via VBA. While successfully retrieving table names, encountering error 3170 ("Could not find installable ISAM") when attempting to create linked tables. Any insights on...
7 Aug 2023 by DomGries
Download and install any dependency such as .NET, Visual C++ or SQL Server during your application's installation!
20 Feb 2024 by Alain Elshocht
Hi everyone, I'm developping an application witch allows the user to fill a form with text. Therefore I use textboxes. I can save the data contained in the textboxes to an Access database but there is a problem when the text contains single (')...
5 Dec 2023 by Basant Rajpurohit
import pyodbc db_path = r'E:\MasterMindAcc\Sys\NetNo.accdb' password = 'AaBbCc' #Your connection string here... conn_str = f'DRIVER={{Microsoft Access Driver (*.mdb, *.accdb)}};DBQ={db_path};PWD={password}' try: #Make the connection... ...