You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the implementation of the Microsoft Access handler for MindsDB.
4
-
5
-
## Microsoft Access
6
-
Microsoft Access is a pseudo-relational database engine from Microsoft. It is part of the Microsoft Office suite of applications that also includes Word, Outlook and Excel, among others. Access is also available for purchase as a stand-alone product. Access uses the Jet Database Engine for data storage.
Now, you can use this established connection to query your database as follows,
26
-
~~~~sql
27
-
SELECT*FROMaccess_datasource.example_tbl
1
+
# Microsoft Access Handler
2
+
3
+
This is the implementation of the Microsoft Access handler for MindsDB.
4
+
5
+
## Microsoft Access
6
+
Microsoft Access is a pseudo-relational database engine from Microsoft. It is part of the Microsoft Office suite of applications that also includes Word, Outlook and Excel, among others. Access is also available for purchase as a stand-alone product. Access uses the Jet Database Engine for data storage.
Copy file name to clipboardExpand all lines: mindsdb/integrations/handlers/access_handler/connection_args.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,11 @@
5
5
6
6
connection_args=OrderedDict(
7
7
db_file={
8
-
'type': ARG_TYPE.STR,
9
-
'description': 'The database file where the data will be stored.'
8
+
"type": ARG_TYPE.PATH,
9
+
"description": "The full path to the Microsoft Access database file (.mdb or .accdb). On Windows, use absolute paths like C:\\Users\\username\\Documents\\database.accdb",
0 commit comments