MySQL Connector/ODBC in Practice: Installation, Configuration and Integration

Inhalt

Introduction

MySQL Connector/ODBC, often referred to as MyODBC, is an Open Database Connectivity (ODBC) driver provided by Oracle for connecting applications to MySQL databases. As one of the most widely used relational database management systems, MySQL powers countless web applications, business platforms, and enterprise systems worldwide. The ability to interact with MySQL databases from a wide range of client applications, especially legacy systems, business intelligence (BI) tools, and custom software, is essential in modern IT environments.

This article presents a comprehensive, technically detailed overview of MySQL Connector/ODBC. It covers its architecture, installation, configuration, supported platforms, technical features, limitations, security aspects, troubleshooting, and real-world application scenarios. The objective is to provide a reference-quality resource for IT professionals, developers, DBAs, and system integrators.

1. Fundamentals of ODBC and the Role of MySQL Connector/ODBC

1.1 What is ODBC?

Open Database Connectivity (ODBC) is a standard application programming interface (API) for accessing database management systems (DBMS). Developed by Microsoft in the early 1990s, ODBC allows applications to communicate with different DBMSs using SQL as a universal language, irrespective of the underlying database vendor. The ODBC standard is maintained by the SQL Access Group and has become a ubiquitous method for database interoperability in both Windows and cross-platform environments.

The ODBC architecture consists of:

  • ODBC Driver Manager: Manages communication between applications and database drivers.
  • ODBC Drivers: Vendor-specific libraries that translate ODBC calls into database-native protocols.
  • Data Source Names (DSNs): Logical names that encapsulate connection parameters.

1.2 MySQL Connector/ODBC: Overview and History

MySQL Connector/ODBC is Oracle’s official ODBC driver for MySQL databases. It enables applications supporting the ODBC standard (such as Microsoft Excel, Access, Crystal Reports, Tableau, and many custom enterprise apps) to connect, query, and manipulate data stored in MySQL.

The connector originated as MyODBC, developed by MySQL AB, and has been maintained by Oracle since its acquisition of Sun Microsystems (which had previously acquired MySQL AB). The product is continuously updated to support new MySQL versions, protocols, operating systems, and security features.

Connector/ODBC is available as open-source software, licensed under the GNU General Public License (GPL), and can be freely downloaded from Oracle’s official MySQL site.

1.3 Key Use Cases

The MySQL Connector/ODBC is utilized in a variety of scenarios, including but not limited to:

  • Integration of MySQL with desktop applications (e.g., Microsoft Access, Excel).
  • Business Intelligence and Reporting (connecting MySQL databases to BI tools like Tableau, Qlik, Crystal Reports).
  • Data migration and ETL (Extract, Transform, Load) processes.
  • Cross-platform application development (enabling C/C++, .NET, Python, or Java applications to use MySQL via ODBC).
  • Legacy system integration where ODBC is the only supported database interface.

2. Supported Platforms and Versions

2.1 Operating Systems

MySQL Connector/ODBC supports a broad range of operating systems, ensuring compatibility with diverse deployment environments. The major platforms include:

  • Windows: Comprehensive support, including both 32-bit and 64-bit versions of Windows 10, 11, Windows Server 2012/2016/2019/2022.
  • Linux: Major distributions (including Debian, Ubuntu, Red Hat Enterprise Linux, CentOS, Fedora, SUSE Linux Enterprise Server).
  • macOS: Native support for modern versions.
  • UNIX Variants: Some versions support Solaris, FreeBSD, and AIX, though these are less commonly used in new deployments.

2.2 MySQL Database Versions

Connector/ODBC maintains backward and forward compatibility with multiple MySQL database versions. The recommended practice is always to use a Connector/ODBC version matching or newer than the database server version in use, as new features and protocol changes are frequently introduced.

  • MySQL 5.x, 8.x: Full support for the current Long Term Support (LTS) releases.
  • MySQL 4.1 and earlier: Limited support, but older Connector/ODBC versions (3.51, 5.1) remain available for legacy environments.

2.3 ODBC Specification Support

The driver adheres to the ODBC 3.8 specification and is backward compatible with ODBC 2.x/3.x, ensuring broad interoperability with legacy and modern software alike.

3. Downloading and Installing MySQL Connector/ODBC

3.1 Obtaining the Connector

The official MySQL Connector/ODBC distributions are available directly from Oracle’s MySQL downloads page (https://dev.mysql.com/downloads/connector/odbc/). Users should always select the latest production (GA – General Availability) version compatible with their system architecture (32/64 bit).

  • Windows: Available as both MSI installers (for typical users) and ZIP archives (for advanced/manual deployment).
  • Linux: Provided as RPM, DEB, and TAR packages.
  • macOS: Distributed as DMG images for straightforward installation.

It is critical to match the connector’s bitness (32- or 64-bit) to the bitness of the client application, not the operating system. For example, 32-bit Microsoft Access on 64-bit Windows requires the 32-bit ODBC driver.

3.2 Installation Procedures

3.2.1 Windows

  • MSI Installer: Download and run the installer. Follow the wizard to complete the installation. The installer registers the driver with the ODBC Data Source Administrator (ODBCAD32.exe).
  • Manual ZIP Deployment: Extract files to a chosen directory. Manual registration in the ODBC Data Source Administrator may be required.

3.2.2 Linux

  • DEB/RPM Packages: Use the package manager (dpkgrpm, or yumapt-get) to install. Dependencies such as unixODBC or iODBC are generally required.
  • TAR Archives: Extract and copy the binaries and libraries to appropriate directories (e.g., /usr/local/lib). Update the odbcinst.ini file to register the driver.

macOS

  • DMG Installer: Mount the disk image, drag and drop the Connector/ODBC package to the /usr/local directory, and configure the driver with the ODBC Administrator.

3.3 Post-Installation Verification

After installation, the ODBC driver should appear in the ODBC Data Source Administrator (Windows) or be listed in the odbcinst -q -d output (Linux/macOS). Sample DSN setup and connection tests are recommended to verify successful installation.

4. Configuring Connections: DSN, DSN-less, and Connection Strings

4.1 Data Source Name (DSN) Setup

ODBC uses Data Source Names (DSNs) as logical identifiers for database connection configurations. DSNs can be defined as:

  • User DSN: Accessible only to the current user.
  • System DSN: Accessible to all users on the machine (including services).
  • File DSN: Stored in a file, portable across systems.

4.1.1 Creating a DSN on Windows

  1. Launch ODBC Data Source Administrator (ODBCAD32.exe).
  2. Navigate to the User DSN or System DSN tab.
  3. Click Add…, select MySQL ODBC Driver (e.g., “MySQL ODBC 8.3 ANSI Driver” or “MySQL ODBC 8.3 Unicode Driver”), and click Finish.
  4. Enter configuration parameters:
    • Data Source Name: Logical name.
    • Description: Optional description.
    • Server: MySQL server hostname or IP address.
    • Port: Default is 3306.
    • User: MySQL username.
    • Password: MySQL password (can be left blank for prompted entry).
    • Database: Default database (optional).
  5. Test the connection and save the configuration.

4.1.2 Configuring DSNs on Linux/macOS

Edit the odbc.ini file (typically located in /etc/odbc.ini or ~/.odbc.ini):

[my_mysql_dsn]
Description = My MySQL Database
Driver = MySQL
Server = db.example.com
User = username
Password = password
Database = exampledb
Port = 3306

Register the driver in odbcinst.ini if necessary.

4.2 DSN-less Connections

Many applications and programming environments support DSN-less connections, where all connection parameters are provided directly in the connection string. This approach is common in scripting languages, custom applications, and scenarios where deployment flexibility is needed.

Example of a DSN-less ODBC connection string:

Driver={MySQL ODBC 8.3 Unicode Driver};Server=db.example.com;Database=exampledb;User=username;Password=password;Port=3306;Option=3;

Key parameters:

  • Driver: Name of the ODBC driver as registered on the system.
  • Server: Hostname or IP of the MySQL server.
  • Database: Database name to use by default.
  • User: Username for authentication.
  • Password: Password for authentication.
  • Port: Port number (default 3306).
  • Option: Bitwise options (see documentation for specific flags).

DSN-less connections offer greater portability and are often preferred in application development and automated deployment.

4.3 Unicode vs. ANSI Drivers

MySQL Connector/ODBC is available in two main variants on Windows:

  • Unicode Driver: Fully supports Unicode (UTF-8, UCS2), enabling proper handling of multilingual data and character sets. Recommended for all modern applications.
  • ANSI Driver: Legacy compatibility for applications restricted to single-byte encodings. Use only when Unicode support is not required.

On other platforms, only the Unicode driver is generally provided.

4.4 Connection Options and Advanced Parameters

The driver exposes many options to control connection behavior, performance, security, and compatibility. Notable parameters include:

  • SSL parameters: (SSLCASSLCERTSSLKEY) for encrypted connections.
  • Compression: (COMPRESS=1) to enable protocol-level compression.
  • Timeouts: (CONNECTION_TIMEOUTREAD_TIMEOUTWRITE_TIMEOUT) to control connection and I/O timeouts.
  • Cursor types: (NO_SSPSCURSOR_TYPE) for server-side/prepared statements and cursor behavior.
  • Allow Zero Datetime: (OPTION=2) to allow retrieval of zero dates as valid values.
  • NO_SCHEMA: Prevents schema-related metadata queries (improves performance for certain BI tools).

Refer to the official documentation for a complete and always up-to-date list of options and their detailed effects.

5. Technical Features and Compliance

5.1 SQL Syntax and Functionality

MySQL Connector/ODBC aims to provide full support for standard SQL as defined by the ODBC specification. However, certain MySQL-specific SQL syntax or functions may differ from other DBMSs. Notable features include:

  • Support for SQL-92/SQL-99 standards: Most common queries, joins, subqueries, and data manipulation operations are supported.
  • Pass-through queries: Applications can send native MySQL SQL statements directly for operations not covered by ODBC standard SQL.
  • Stored procedures and functions: Supported, with some caveats in older versions regarding parameter types and return values.
  • Transactions: Full support for transactional operations, including START TRANSACTIONCOMMIT, and ROLLBACKwhere the MySQL storage engine (e.g., InnoDB) supports transactions.
  • Scrollable cursors: The driver supports forward-only and, in newer versions, server-side cursors for improved performance in client applications.
  • Batch statements and parameter arrays: Enables efficient bulk inserts or updates.

5.2 Unicode and Character Set Handling

The Unicode variant of the driver ensures correct mapping between ODBC’s wide character types and MySQL’s internal character sets (UTF-8, UTF-16, Latin1, etc.). Proper character set configuration is critical in multilingual or international environments. The driver supports character set negotiation at connection time and ensures lossless data transfer when configured appropriately.

5.3 Data Type Mapping

One of the core responsibilities of an ODBC driver is to map between SQL and client data types. MySQL Connector/ODBC handles conversion between MySQL types (INTVARCHARTEXTBLOBDATE, etc.) and ODBC SQL types (SQL_INTEGERSQL_VARCHARSQL_LONGVARCHARSQL_BINARYSQL_DATE, etc.).

Special attention should be given to:

  • BLOB and TEXT fields: Binary and large text fields are fully supported; be mindful of client-side memory management.
  • DATE, TIME, and TIMESTAMP: All standard date/time types are supported, but “zero” dates (0000-00-00) may need option adjustments in DSN or connection string.
  • ENUM and SET: Mapped to string types.

5.4 Limitations and Known Issues

Despite its broad feature set, there are known limitations and differences:

  • Full outer join: Not natively supported in MySQL, thus not available via ODBC except via workarounds.
  • Isolation levels: MySQL’s supported isolation levels (READ COMMITTEDREPEATABLE READSERIALIZABLE) may differ in behavior from other DBMSs.
  • Catalog and schema metadata: Some BI tools expect “schema” separation, while MySQL uses “database” instead. This may require specific driver options.
  • Parameter handling in stored procedures: Earlier driver versions had restrictions with output parameters; recent versions have improved support.

Regular review of the release notes and documentation is advised to stay informed about current limitations and their workarounds.

6. Security Considerations

6.1 Authentication Methods

By default, MySQL Connector/ODBC supports standard username/password authentication. In newer MySQL versions (5.7+, 8.x), the default authentication plugin is caching_sha2_password, though mysql_native_password remains supported for compatibility.

If an application fails to authenticate, verify both driver and server support for the relevant plugin, and, if necessary, adjust the user account’s authentication method in MySQL.

6.2 Secure Connections (SSL/TLS)

Support for encrypted connections via SSL/TLS is essential for protecting data in transit, especially when accessing cloud-based or remote MySQL servers.

Key steps for SSL/TLS with Connector/ODBC:

  • Obtain CA, client certificate, and key files if required.
  • Set the corresponding options in DSN or connection string:
    • SSLCA — Path to CA certificate
    • SSLCERT — Path to client certificate
    • SSLKEY — Path to private key
    • SSLMODE — Can be PREFERREDREQUIREDVERIFY_CA, or VERIFY_IDENTITY
  • Ensure the MySQL server is configured to accept SSL connections (require_secure_transport = ON in my.cnfor server settings).

6.3 Network Security and Firewalls

MySQL servers typically listen on TCP port 3306. Network firewalls should restrict access to trusted clients only. For deployments requiring public access, further measures such as VPN, SSH tunnels, or firewall whitelisting are recommended.

6.4 Best Practices

  • Never hardcode credentials in scripts; use secure vaults or environment variables.
  • Use the least-privilege principle for MySQL accounts used by ODBC.
  • Always use the latest stable version of the connector for security updates.
  • Regularly review logs for unauthorized access attempts.

7. Application Integration and Real-World Scenarios

7.1 Connecting Desktop Applications

Many widely used desktop applications, such as Microsoft Access, Microsoft Excel, and LibreOffice Base, support ODBC for external database connectivity. MySQL Connector/ODBC enables these applications to read from, write to, and update MySQL databases without the need for specialized drivers or middleware.

Example: Connecting Microsoft Access to MySQL

  1. Create a System DSN using the ODBC Data Source Administrator and the MySQL ODBC Unicode Driver.
  2. Open Access, select External Data → ODBC Database.
  3. Choose to Link to the data source by creating a linked table.
  4. Select the DSN created earlier.
  5. Authenticate with your MySQL credentials.
  6. Linked tables will now appear in Access and can be used almost identically to native Access tables.

Caveats:

  • Data types in MySQL and Access are not always identical. Test all forms, reports, and queries for compatibility.
  • Performance with very large tables may be limited by ODBC and network speed.

7.2 Integration with BI, Reporting, and Analytics Tools

Modern business intelligence platforms—including Tableau, QlikView, Crystal Reports, Power BI (using ODBC), and many others—use ODBC to provide data import, live connection, and reporting capabilities from MySQL databases. MySQL Connector/ODBC allows seamless connection, subject to the following best practices:

  • Use Unicode driver for non-ASCII datasets.
  • Always test calculated fields and parameterized queries for correct syntax.
  • Some tools require specific ODBC options (e.g., NO_SCHEMANO_SSPS) for optimal metadata handling or performance.

7.3 Use in Programming Environments

Many programming languages and frameworks provide ODBC libraries, allowing them to leverage Connector/ODBC for MySQL access.

A. C/C++

Use the sql.h and sqlext.h headers to interact with ODBC APIs, loading the MySQL ODBC driver by specifying its name in connection strings.

B. .NET (C#, VB.NET)

ODBC can be accessed via System.Data.Odbc namespace:

using System.Data.Odbc;

string connString = "Driver={MySQL ODBC 8.3 Unicode Driver};Server=localhost;Database=mydb;User=myuser;Password=mypass;";
using (OdbcConnection conn = new OdbcConnection(connString))
{
conn.Open();
// Execute queries, handle results
}

C. Python

With the pyodbc package, Python can use ODBC drivers:

import pyodbc

conn = pyodbc.connect('DRIVER={MySQL ODBC 8.3 Unicode Driver};SERVER=localhost;DATABASE=mydb;USER=myuser;PASSWORD=mypass;')
cursor = conn.cursor()
cursor.execute("SELECT * FROM mytable")
for row in cursor.fetchall():
print(row)

D. Java

ODBC connectivity in Java is available via the JDBC-ODBC bridge (deprecated) or third-party solutions, but for MySQL, using the official MySQL Connector/J is generally preferred for native Java projects.

7.4 Data Migration and ETL

ODBC is commonly used in data migration and ETL (Extract, Transform, Load) pipelines to transfer data between MySQL and other database systems (e.g., SQL Server, Oracle, PostgreSQL). Tools like Microsoft SQL Server Integration Services (SSIS), Pentaho, and Talend can read and write MySQL data via ODBC.

Best practices for ETL:

  • Test field mappings for compatibility, especially for date/time and text fields.
  • Optimize batch sizes and transaction scope for large transfers.
  • Be aware of transaction isolation and locking semantics between source and target DBMS.

7.5 Cross-Platform and Legacy System Support

Because ODBC is a decades-old standard, it remains a primary integration approach for many legacy business applications. MySQL Connector/ODBC extends the life of these systems by allowing them to interface with modern MySQL databases, including on Linux, Windows, and macOS.

8. Diagnostics, Troubleshooting, and Logging

8.1 Common Connection Issues

  • Driver not found: Ensure correct installation and registration in ODBC Administrator (Windows) or odbcinst.ini (Linux/macOS).
  • Authentication errors: Confirm username, password, host, and authentication plugin compatibility.
  • Port issues: Ensure firewall and MySQL server are listening on the correct port (default 3306).
  • SSL errors: Verify correct certificate paths and server configuration for encrypted connections.

8.2 Logging and Debugging

Connector/ODBC supports connection and query logging for diagnostics.

  • Windows: Use the Tracing tab in the ODBC Data Source Administrator to enable ODBC tracing and log driver activity.
  • Linux/macOS: Set the ODBCINSTTRACE and ODBCINSTTRACESTACK environment variables or use unixODBC’s odbcinst and isql tools.

MySQL ODBC Driver-specific logs: Some advanced options allow you to enable detailed logging of driver operations, which can be specified in the DSN or connection string using TRACE and related parameters.

8.3 Frequently Encountered Error Messages

  • „HY000: Client does not support authentication protocol requested by server“: Update to the latest driver version or adjust MySQL user authentication plugin.
  • „Data source name not found and no default driver specified“: Check DSN and driver registration.
  • „Can’t connect to MySQL server on ‚hostname‘ (10061)“: Server may be unreachable; verify network and port settings.

Consult the official documentation and community forums for current error codes and troubleshooting guidance.

9. Maintenance, Updates, and Versioning

9.1 Keeping Connector/ODBC Updated

  • Regularly check the official MySQL Connector/ODBC download page for new releases.
  • Upgrade drivers in tandem with MySQL server upgrades to avoid protocol and feature mismatches.
  • Test compatibility in staging environments before rolling out updates to production systems.

9.2 Coexistence of Multiple Versions

Both 32-bit and 64-bit versions of Connector/ODBC can be installed side by side, but each must be registered separately. Applications will use the driver matching their own bitness.

  • Use the 32-bit ODBC Administrator for 32-bit DSNs (usually located at C:\Windows\SysWOW64\odbcad32.exe).
  • Use the 64-bit ODBC Administrator for 64-bit DSNs (at C:\Windows\System32\odbcad32.exe).

9.3 Backward Compatibility

Oracle maintains backward compatibility within major driver versions, but deprecated features may be removed in new releases. Review the release notes carefully when upgrading.

10. Best Practices for Deployment and Performance

10.1 Optimizing Performance

While ODBC drivers add a layer of abstraction, careful configuration can ensure excellent performance even for demanding workloads. Key recommendations include:

  • Connection Pooling: Enable connection pooling to reuse existing database connections, reducing overhead and improving response times. On Windows, pooling is managed via the ODBC Data Source Administrator; on Unix-like systems, it may be configured via odbc.ini.
  • Batch Operations: Where possible, use parameter arrays or bulk inserts/updates to minimize round trips between client and server.
  • Optimize Queries: Leverage MySQL indexes, avoid unnecessary columns in SELECT statements, and minimize expensive operations at the database level.
  • Reduce Metadata Queries: Use driver options such as NO_SCHEMA and NO_SSPS to prevent unnecessary metadata calls, particularly with BI tools known for excessive schema requests.
  • Adjust Buffer Sizes: For applications dealing with large text or binary data, ensure client-side buffer sizes are configured to avoid truncation or excessive memory use.

10.2 Security and Compliance

  • Enforce Encryption: Use SSL/TLS for all connections, particularly when accessing MySQL over untrusted networks. Periodically review certificate validity and cipher strength.
  • Restrict User Privileges: Grant only necessary permissions to accounts used by ODBC clients. Regularly audit for unused or over-privileged accounts.
  • Audit Logs: Enable auditing at both the application and database level to monitor access and changes, which is essential for compliance in regulated industries.

10.3 High Availability and Failover

For mission-critical systems:

  • MySQL Replication and Clustering: Combine MySQL’s native replication with ODBC’s failover features for high availability. Connector/ODBC supports failover in the connection string using options like failover=ON;failoverpartner=....
  • Connection Retry Logic: Implement retry strategies in client applications to handle transient network or server outages gracefully.

11. Future Outlook and Active Development

MySQL Connector/ODBC remains under active development by Oracle, with new features and security improvements released regularly. The roadmap continues to focus on:

  • Support for new authentication plugins and modern MySQL protocol features.
  • Enhanced Unicode and character set compatibility for international deployments.
  • Broader support for cloud-hosted MySQL variants (e.g., Amazon RDS, Google Cloud SQL, Azure Database for MySQL).
  • Ongoing bug fixes, performance improvements, and expanded metadata support for modern BI and analytics tools.

Staying current with releases and consulting Oracle’s Connector/ODBC documentation ensures access to the latest capabilities and security updates.

12. Further Resources and References

For advanced usage, troubleshooting, and up-to-date information, the following resources are indispensable:

Wie hilfreich war dieser Beitrag?

Klicke auf die Sterne um zu bewerten!

Es tut uns leid, dass der Beitrag für dich nicht hilfreich war!

Lasse uns diesen Beitrag verbessern!

Wie können wir diesen Beitrag verbessern?

Meroth IT-Service ist Ihr lokaler IT-Dienstleister in Frankfurt am Main für kleine Unternehmen, Selbstständige und Privatkunden


Kostenfreie Ersteinschätzung Ihres Anliegens?

❱ Nehmen Sie gerne Kontakt auf ❰

Werbung

HP LaserJet M110w Laserdrucker Schwarz-Weiß, Monolaser, Drucker, WLAN, Airprint, HP Smart App, Bis zu 20 S./Min drucken, Auto-On/Auto-Off-Technologie
HP LaserJet M110w Laserdrucker Schwarz-Weiß, Monolaser, Drucker, WLAN, Airprint, HP Smart App, Bis zu 20 S./Min drucken, Auto-On/Auto-Off-Technologie*
UVP**: € 129,90
€ 91,90
Gewöhnlich versandfertig in 1 bis 4 Wochen
Preise inkl. MwSt., zzgl. Versandkosten
€ 99,00
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
Lenovo IdeaPad 3 Laptop | 15,6
Lenovo IdeaPad 3 Laptop | 15,6" Full HD Display | AMD Ryzen 5 5625U | 8GB RAM | 512GB SSD | AMD Radeon Grafik | Win11 Home | QWERTZ | blau | 3 Monate Premium Care*
Kein Angebot verfügbar.
TP-Link LS105G 5-Ports Gigabit Netzwerk Switch (5 RJ-45 Lan Ports, robustes Metallgehäuse, 802.1P/DSCP QoS, Plug-and-Play, lüfterlos) blau metallic
TP-Link LS105G 5-Ports Gigabit Netzwerk Switch (5 RJ-45 Lan Ports, robustes Metallgehäuse, 802.1P/DSCP QoS, Plug-and-Play, lüfterlos) blau metallic*
UVP**: € 23,80
€ 11,40
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 11,40
Preise inkl. MwSt., zzgl. Versandkosten
€ 18,90
Preise inkl. MwSt., zzgl. Versandkosten
HP Color LaserJet Pro MFP 3302fdwg Multifunktions-Farblaserdrucker, Fax, Automatischer beidseitiger Druck, Touchscreen, Wi-Fi, Ethernet, USB, HP Wolf Pro Security
HP Color LaserJet Pro MFP 3302fdwg Multifunktions-Farblaserdrucker, Fax, Automatischer beidseitiger Druck, Touchscreen, Wi-Fi, Ethernet, USB, HP Wolf Pro Security*
UVP**: € 546,00
€ 373,61
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 399,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
Epson WorkForce Pro WF-4830DTWF A4 kabelloser Multifunktions-Tintenstrahldrucker inkl. inkl. 3 Monate kostenlosem ReadyPrint Flex Tinten-Abo*
Epson WorkForce Pro WF-4830DTWF A4 kabelloser Multifunktions-Tintenstrahldrucker inkl. inkl. 3 Monate kostenlosem ReadyPrint Flex Tinten-Abo**
UVP**: € 219,99
€ 167,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 167,99
Preise inkl. MwSt., zzgl. Versandkosten
€ 176,95
Preise inkl. MwSt., zzgl. Versandkosten
Lenovo IdeaPad Flex Convertible 5 Laptop | 14
Lenovo IdeaPad Flex Convertible 5 Laptop | 14" WUXGA Display | AMD Ryzen 7 7730U | 16GB RAM | 512GB SSD | AMD Radeon Grafik | Windows 11 Home | QWERTZ | grau | 3 Monate Premium Care*
UVP**: € 682,07
€ 649,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
Gigaset E630HX - DECT-Mobilteil mit Ladeschale - Fritzbox-kompatibel - Schnurloses Telefon für Router und DECT-Basis – Robust und Strapazierfähig, schwarz [Deutsche Version] [Ohne Basis]
Gigaset E630HX - DECT-Mobilteil mit Ladeschale - Fritzbox-kompatibel - Schnurloses Telefon für Router und DECT-Basis – Robust und Strapazierfähig, schwarz [Deutsche Version] [Ohne Basis]*
UVP**: € 139,99
€ 95,56
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 99,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
HP Laptop mit 17,3
HP Laptop mit 17,3" FHD Display, AMD Ryzen 3 7320U, 8 GB DDR5 RAM, 512 GB SSD, AMD Radeon-Grafik, Windows 11, QWERTZ, Schwarz inkl. 25 GB Dropbox-Speicher für 12 Monate*
UVP**: € 499,00
€ 394,00
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
Canon PIXMA iX6850 Drucker Farbtintenstrahl Multifunktionsgerät DIN A3+ (Bürodrucker, Fotodruck, Textdruck, 9.600 x 2.400 DPI, WiFi, WLAN, USB, 5 Separate Tinten, Direktdruck, Print App) schwarz
Canon PIXMA iX6850 Drucker Farbtintenstrahl Multifunktionsgerät DIN A3+ (Bürodrucker, Fotodruck, Textdruck, 9.600 x 2.400 DPI, WiFi, WLAN, USB, 5 Separate Tinten, Direktdruck, Print App) schwarz*
€ 211,79
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
Brother MFC-J5955DW Business-Ink 4-in-1 Multifunktionsgerät mit DIN A3 Druckfunktion (30 Seiten/Min, Tintenstrahl, USB, LAN, WLAN, Duplexdruck) weiß/grau 545 x 436 x 375 mm (BxTxH)
Brother MFC-J5955DW Business-Ink 4-in-1 Multifunktionsgerät mit DIN A3 Druckfunktion (30 Seiten/Min, Tintenstrahl, USB, LAN, WLAN, Duplexdruck) weiß/grau 545 x 436 x 375 mm (BxTxH)*
€ 333,19
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 329,99
Preise inkl. MwSt., zzgl. Versandkosten
GIGASET E720HX Ergänzungsmobilteil, Schwarz
GIGASET E720HX Ergänzungsmobilteil, Schwarz*
€ 72,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 95,95
Preise inkl. MwSt., zzgl. Versandkosten
WONDAY Tintenstrahldrucker, tragbar, für alle Medien
WONDAY Tintenstrahldrucker, tragbar, für alle Medien*
€ 347,09
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
Crucial Pro DDR5 RAM 32GB Kit (2x16GB) 6000MHz CL36, Overclocking Gaming, Intel XMP 3.0 / AMD EXPO, PC Computer Arbeitsspeicher, Schwarz - CP2K16G60C36U5B
Crucial Pro DDR5 RAM 32GB Kit (2x16GB) 6000MHz CL36, Overclocking Gaming, Intel XMP 3.0 / AMD EXPO, PC Computer Arbeitsspeicher, Schwarz - CP2K16G60C36U5B*
€ 84,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 87,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 99,90
Preise inkl. MwSt., zzgl. Versandkosten
Synology DiskStation DS423 NAS
Synology DiskStation DS423 NAS*
UVP**: € 449,99
€ 363,95
Preise inkl. MwSt., zzgl. Versandkosten
€ 394,99
Preise inkl. MwSt., zzgl. Versandkosten
€ 1.019,00
Preise inkl. MwSt., zzgl. Versandkosten
Logitech M185 Kabellose Maus, 2,4 GHz mit USB-Nano-Empfänger, 12 Monate Batterielaufzeit, 1000 DPI Optical Tracking, Für Links- und Rechtshänder, Kompatibel mit PC, Mac, Laptop - Grau
Logitech M185 Kabellose Maus, 2,4 GHz mit USB-Nano-Empfänger, 12 Monate Batterielaufzeit, 1000 DPI Optical Tracking, Für Links- und Rechtshänder, Kompatibel mit PC, Mac, Laptop - Grau*
UVP**: € 17,99
€ 8,79
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
CHERRY DC 2000, Kabelgebundenes Tastatur-Maus-Set, Deutsches Layout (QWERTZ), Plug & Play über je 1 USB-Anschluss, Flaches Design, Symmetrische Maus, Schwarz
CHERRY DC 2000, Kabelgebundenes Tastatur-Maus-Set, Deutsches Layout (QWERTZ), Plug & Play über je 1 USB-Anschluss, Flaches Design, Symmetrische Maus, Schwarz*
€ 18,90
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
€ 19,99
Auf Lager
Preise inkl. MwSt., zzgl. Versandkosten
(*) Werbung / Affiliate-Links: Wenn Sie auf einen dieser Links klicken und einkaufen, erhalte ich eine Provision. Für Sie verändert sich der Preis dadurch nicht. Zuletzt aktualisiert am 15. Juli 2025 um 15:00. Die hier gezeigten Preise können sich zwischenzeitlich auf der Seite des Verkäufers geändert haben. Alle Angaben ohne Gewähr.
(**) UVP: Unverbindliche Preisempfehlung

Preise inkl. MwSt., zzgl. Versandkosten
Nach oben scrollen