Recent content by perlfan

  1. P

    Solved Problems with Umlaute/UTF8 with MySQL Connector 8.0

    In the meantime I solved this with CONVERT(CAST(CONVERT( column ) USING LATIN1) AS BINARY) USING UTF8) in the select. Best, Frank
  2. P

    Solved Problems with Umlaute/UTF8 with MySQL Connector 8.0

    Good morning, thank you, do you think that Ansi and utf8mb4 don't go together? What's your point? Thx, Frank
  3. P

    Solved Problems with Umlaute/UTF8 with MySQL Connector 8.0

    Hi there, I'm pulling data from my Wordpress database (charset utf8mb4_unicode_ci) via MySQL Connector 8.0 into MS Access. This has worked well until I had to restore a backup on my website using Duplicator Backup Plugin. Now, all German Umlaute (ä, ü etc.) and other letters like ß are displayed...
  4. P

    Where do host your database?

    I think I will try to look into a remote desktop setup. That's maybe the best workaround. Thank you for your input. Frank
  5. P

    Where do host your database?

    Hi there, I'm using Access together with a MySQL database as the backend. Whenever I hosted the database with a shared hosting provider (remote access via ODBC), the connection performance was just not sufficient even though my queries are not that complex. In some tables we have a few thousand...
  6. P

    Solved Copy all files of all subfolders via FTP

    You're right, there should be only one slash, I just deleted a few things before putting the code here, that's when it happened ...
  7. P

    Solved Copy all files of all subfolders via FTP

    @Gasman Thank you - it's true that I kind of ignored that one post where they were addressing my issue. With the help of that post I was able to put together a routine which now connects via ftp, looks through a certain folder for subfolders, and downloads all files from the subfolders to a...
  8. P

    Solved Copy all files of all subfolders via FTP

    I already did a lot of googling :-) However there was nothing really useful.
  9. P

    Solved Copy all files of all subfolders via FTP

    Hi there, I'm working on pulling order data from our web shop into MS Access which works pretty well. Now I'd like to copy files uploaded by customers within the order process onto our drive via FTP. Unfortunately, I only know part of the path - my URL/order_ID/unique_ID/files .... As I cannot...
  10. P

    Solved Connect Access with Woocommerce via REST API

    And this is the code to authenticate with Woocommerce from MS Access & VBA and retrieve information via REST API: Option Compare Database Option Explicit Const WOOkey = "ck_XYZ" Const WOOsecret = "cs_XYZ" Const WOOtoken = "ck_XYZ:cs_XYZ" Const WOOurl = "https://yoururl.com/wp-json/wc/v3"...
  11. P

    Solved Connect Access with Woocommerce via REST API

    Fantastic effort, Dave!! You didn't give up and finally worked out a code that works perfectly! Finally it's documented how to authenticate with Woocommerce from MS Access & VBA and retrieve information via REST API. Thank you!!
  12. P

    Solved One select query for several meta_values possible?

    Super, this is what I needed - I didn't know that if ... then is possible in the Select part. Thanks a lot! Frank
  13. P

    Solved One select query for several meta_values possible?

    Hi there, I'm trying to fetch data from a Wordpress database into MS Access. In picture below you'll see how Woocommerce (the shop plugin of Wordpress) stores user data. I'm now trying to build a query to fetch the different user data at once (e.g. _billing_first_name, _billing_last_name...
  14. P

    Solved Change charset of MySQL Connector 8.0 to Latin1

    Thank you so much! Ansi Driver solved my issue! Frank
  15. P

    Solved Change charset of MySQL Connector 8.0 to Latin1

    Hi there, in the past, I've used the MySQL Connector 5.1 driver to connect to my MySQL database. For several reasons, I now had to update to MySQL Connector 8.0. Unfortunately MySQL Connector 8.0 doesn't support my German Umlaute by default (ä, ü etc.). What I read about this is "The default...
Top Bottom