<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Microsoft Access</title>
        <description>Forum for Microsoft Access migration issues.</description>
        <link>https://forums.mysql.com/list.php?65</link>
        <lastBuildDate>Sat, 11 Apr 2026 23:39:51 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?65,741121,741121#msg-741121</guid>
            <title>Help converting an Access database (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,741121,741121#msg-741121</link>
            <description><![CDATA[ I have a fairly large Access database for my LP collection. It has about a dozen tables plus a bunch of forms and queries. The main table, tblAlbums, contains about 700 records and 33 fields. I want to add some features better either impossible or difficult in Access. I&#039;ve been meaning to learn MySQL for a while. I think this will be the motivation I need to do that.<br />
<br />
Can anyone point me to a very good tutorial for converting an Access database over to MySQL?<br />
<br />
I&#039;d also love to have suggestions about an introduction to MySQL tutorial.<br />
<br />
Thanks<br />
<br />
PS: I am running Office 365 on Windows 11. I meant to put that in my signature, but I couldn&#039;t find where to do that.]]></description>
            <dc:creator>Jennifer Murphy</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Mon, 25 Aug 2025 03:17:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,710018,710018#msg-710018</guid>
            <title>erreur réservée -7745 (1 reply)</title>
            <link>https://forums.mysql.com/read.php?65,710018,710018#msg-710018</link>
            <description><![CDATA[ I have installed ODBC drivers &quot;mysql-connector-odbc-8.1.0-winx64.msi&quot; on Windows 10 and tryed a connection with Microsoft Access 2016. Connection to the database is successfull and I can see the tables on it. But when I try to get the  tables, I received an error &quot;erreur réservée -7745 which is not documented. My database is small, and the driver is supposed to be up to date. The database seems OK with phpmyadmin. Can you help me?]]></description>
            <dc:creator>Jean-Michel Lequeux</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sat, 23 Sep 2023 12:10:19 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,707491,707491#msg-707491</guid>
            <title>import rows into MYSQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,707491,707491#msg-707491</link>
            <description><![CDATA[ I have an ACcess frontend to a remote MYSQL. ALso an EXCEL tool that parses text into rows, that we&#039;d like to get these Excel rows now into the MYSQL db. <br />
<br />
We figured it would make sense to maybe interface directly with MYSQL from Excel, rather than passing the data to Access, then to MYSQL. <br />
<br />
The user signs into the Access front end and authenticates with MYSQL. <br />
<br />
Can I link from Excel to this open Access Front end to grab the password? (after storing in variable after the Access front end login) <br />
<br />
Or better maybe to have Excel pass the rows to Access, and have Access put them up to MYSQL, as user has already been authenticted in the Access front end?]]></description>
            <dc:creator>dave wilson</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Tue, 14 Feb 2023 00:33:06 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,706757,706757#msg-706757</guid>
            <title>Microsoft Access ODBC call failed MySQL client ran out of memory #2008 (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,706757,706757#msg-706757</link>
            <description><![CDATA[ Hello all,<br />
I have been using AWS MySQLfor large databases for many years and have done analysis using Microsoft Access as a front end on my computer using MySQL ODBC Connector.  Recently I upgraded to My Connector 8.0.31 32 Bit.  I am losing connection to the database when I try to run queries on Large datasets with linked tables.<br />
<br />
In testing I found that I can run query that returns 9 months of data without a problem.  When I change the query to return 10 months I get the error below.<br />
<br />
<br />
My error is ODBC call failed<br />
MySQL ODBC 8.0(a) Driver  mysqld - 5.7.12 MySQL client ran out of memory #2008<br />
<br />
Is this a server configuration, parameter, or resource issue?  <br />
<br />
Or is this a Connector issue that needs some parameters changed?<br />
<br />
Or is this my Computer running out of memory?]]></description>
            <dc:creator>Stephen Rigo</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Wed, 16 Nov 2022 14:41:38 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,705006,705006#msg-705006</guid>
            <title>Access Forms won&#039;t add or update records (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,705006,705006#msg-705006</link>
            <description><![CDATA[ Hi,<br />
I have a problem using an Access front end connected to a MySql Database.<br />
I test UPDATE on one small table with a VBA procedure, using DAO<br />
sql = &quot;UPDATE tblFormateur &quot;<br />
sql = sql &amp; &quot; SET Prenom = &#039;Werner&#039; &quot;<br />
sql = sql &amp; &quot; WHERE Nom=&#039;HEISENBERG&#039; &quot;<br />
The first time I run the query, it&#039;s ok.<br />
But if I run the same query, without changing the value,(keeping Prenom = &#039;Werner&#039;)<br />
I get an error message saying that the query has not been executed,<br />
due to a lock violation.<br />
If I run the query again, but with a different value, e.g Prenom = &#039;Peter&#039;,<br />
the query is executed without error.<br />
<br />
On the other hand, If I do the same experiment with ADODB,<br />
I do not get any error.<br />
<br />
One can say: let&#039;s go with ADODB!<br />
<br />
The problem is that the Access front-end Forms use DAO, not ADODB!<br />
So all the forms won&#039;t be able to either add new records or update records.<br />
<br />
Did you experienced the same issue?<br />
Are there some parameters of the ODBC driver that needs to be set?<br />
<br />
Thank&#039;s advance for any help.<br />
<br />
Windows 1<br />
Access Office 365<br />
ODBC connector 8.0 CE]]></description>
            <dc:creator>philippe pons</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Tue, 21 Jun 2022 07:50:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,704642,704642#msg-704642</guid>
            <title>odbc administration utility could not be found (12 replies)</title>
            <link>https://forums.mysql.com/read.php?65,704642,704642#msg-704642</link>
            <description><![CDATA[ Trying to migrate an MS Access db to SQL Workbench using the Wizard but can&#039;t get past this error message. I&#039;ve tried everything I can think of and no luck. I&#039;m using Windows 11 64bit OS and Workbench 8.0 Community version. Using MS Office Pro Plus 2016 with Access included.<br />
<br />
Thanks]]></description>
            <dc:creator>Richard Vizcarra</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Thu, 19 Jan 2023 13:43:14 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,704459,704459#msg-704459</guid>
            <title>return solid block charctor in mysql query (7 replies)</title>
            <link>https://forums.mysql.com/read.php?65,704459,704459#msg-704459</link>
            <description><![CDATA[ I&#039;m trying to find the equivalent for creating a string of Solid Block charactors. This works in Access - String(30,ChrW(9608))<br />
How might i get that in mysql query?<br />
thnaks!]]></description>
            <dc:creator>dave wilson</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Wed, 25 May 2022 16:39:59 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,700627,700627#msg-700627</guid>
            <title>Link Breakage using MS Access as frontend to MySQL server (2 replies)</title>
            <link>https://forums.mysql.com/read.php?65,700627,700627#msg-700627</link>
            <description><![CDATA[ Hello,<br />
So I&#039;m writing because I&#039;m experiencing a bit of an issue. I have running a MySQL Community 8.0.25 server which at present houses 1286 rows of data. This data is primarily accessed for human consumption via a Microsoft Access 2007 linked table which uses the ODBC connector (also version 8.0.25) although it is read/written by a couple of other applications as well on a regular basis. This setup has been working well for me for about five months now, at least until about three days ago. Previously I was able to view and filter the entire database without issue, yet now when using most methods to view any of the last 16 rows of the database Access loses its link to the DB (all boxes show &#039;?NAME&#039; which does not go away when hitting the &#039;refresh all&#039; button). The exception to this is if I use the equals filter on a VARCHAR column, in which case I can view/edit data from the last several entries. Other filters which would return result sets that include those last several rows incite what appears to be the same loss of connection.<br />
In attempting to diagnose and solve this issue I have verified that those last few records do exist and are visible via queries through other types of connection (including the Dotnet &amp; Python connectors as well as the MySql application on the server). In my ODBC connector settings, I have attempted to correct the problem by enabling &#039;allow big result sets&#039;, &#039;use compression&#039;, &#039;enable automatic reconnect&#039;, &amp;  &#039;Enable safe options&#039; each one at a time and in several combinations thereof. I have via ODBC created both a trace file and a debug log yet I can see nothing visibly wrong in the debug log (no errors listed and all queries listed simply as &#039;executed&#039;) and I lack the skills to parse the trace file.<br />
So that&#039;s my dilemma. Thanks for taking the time to read it through, any assistance would be hugely appreciated.]]></description>
            <dc:creator>Bryce Larsen</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Mon, 17 Jan 2022 23:58:19 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,694387,694387#msg-694387</guid>
            <title>Convert Access Latin1 to utfmb4 problem (1 reply)</title>
            <link>https://forums.mysql.com/read.php?65,694387,694387#msg-694387</link>
            <description><![CDATA[ I have a problem converting legacy Access databases to MySQL. Access ported over multiple generations and in .accdb format. I assume they are encoded in Latin 1 case insensitive accent sensitive. I am wrestling with early poor decisions Access allowed me to make and I was too naive to know better.<br />
<br />
The main field is a varchar field 255 char (&quot;Title&quot;) with a unique index and contains text strings. The database is a long annotated list of single words and phrases. Most are short, but hundreds of thousands of entries are over 191 characters. I need them to be unique and accent sensitive (e.g. Aché are indigenous peoples in Paraguay. ache is to hurt).<br />
<br />
If I import to utf8mb4, the maximum index length is 191 characters. I don&#039;t really need universal character and emoji capability in the Title field, but I do with others. I can create a &quot;tiebreaker field&quot; (188 char + 3 char tiebreaker unique index), But then I have the problem of identifying all the duplicates beforehand, and imports to MySQL drop hundreds of thousands of records.<br />
<br />
I spent many hours trying to find documentation of this issue on the web. I&#039;ve not encountered comprehensive treatments of these kinds of collation issues. I&#039;m even only guessing at Access collation, since I haven&#039;t found a way to get Access to reveal it&#039;s exact encoding. <br />
<br />
Any links or search terms I can use that are not so generic I just get hundreds of pages on collation-free descriptions of performing ideal transfers?]]></description>
            <dc:creator>Preston Hardison</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sat, 23 Jan 2021 18:41:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,694233,694233#msg-694233</guid>
            <title>convert to uppercase or just display? (2 replies)</title>
            <link>https://forums.mysql.com/read.php?65,694233,694233#msg-694233</link>
            <description><![CDATA[ I have varchar() fields on an access form, and want them to be uppercase. <br />
<br />
should i convert on the access client on entry? <br />
or on remote MYSQL server? <br />
or neither,, and just display/format them for viewing on access form or reports?<br />
<br />
thanks!]]></description>
            <dc:creator>dave wilson</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Wed, 20 Jan 2021 02:49:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,690708,690708#msg-690708</guid>
            <title>get odbc error info (3 replies)</title>
            <link>https://forums.mysql.com/read.php?65,690708,690708#msg-690708</link>
            <description><![CDATA[ i&#039;m testing my login to remote mysql, and want to show message if invalid user/pwd. I first got a generic 3151, then added and checked DBEngine.Errors - still get a generic message (same message for network down or invalid user/pword)    <br />
<br />
where/how could the specific error message such as &quot;authenticaton failed&quot;?<br />
<br />
thanks!]]></description>
            <dc:creator>dave wilson</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Fri, 05 Mar 2021 23:58:03 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,689524,689524#msg-689524</guid>
            <title>Trouble with Generated Column (2 replies)</title>
            <link>https://forums.mysql.com/read.php?65,689524,689524#msg-689524</link>
            <description><![CDATA[ Not sure if this is correct forum for this issue.<br />
I&#039;m trying to migrate a Microsoft Access back-end database to MySQL, and having problems with generated columns. Couldn&#039;t get migration assistant to work properly, so used a 3rd-party tool to migrate my tables. This created the tables but I have to fix some things before populating data.<br />
<br />
In Access I have some calculated columns. For example, the &#039;Heading&#039; column is a combination of title (Mr &amp; Mrs, etc.) and names and spouse names.<br />
<br />
Here is calculation in Access to build a heading:<br />
<br />
IIf([UseTitle],[Title] &amp; &quot; &quot;,&quot;&quot;) &amp; IIf(IsNull([DonorFirstName]),[DonorLastName],[DonorFirstName] &amp; IIf(IsNull([SpouseName]),&quot; &quot; &amp; [DonorLastName],IIf(IsNull([SpouseLastName]),&quot; and &quot; &amp; [SpouseName] &amp; &quot; &quot; &amp; [DonorLastName],&quot; &quot; &amp; [DonorLastName] &amp; &quot; and &quot; &amp; [SpouseName] &amp; &quot; &quot; &amp; [SpouseLastName])))<br />
<br />
(In Access, IIF is same as MySQL IF function)<br />
<br />
So if I&#039;m supposed to use a title, put that in. <br />
If first name is null, add last name (that&#039;s how this database denotes a company name). Otherwise, add first name. If no spouse name, add space and last name. If spouse, add &quot; and &quot; plus spouse first name. Then add last name. So now you have &quot;Mr. &amp; Mrs. John and Jane Doe&quot;. In case the spouse has a different last name, it will instead build a string like &quot;Mr. &amp; Mrs. John Doe and Jane Smith&quot;.<br />
<br />
I tried doing this in MySQL generated column, but it keeps erroring out. It seems to work, then when I go into the table designer in Workbench, it says Error parsing DDL. When I view the DDL, the calculated column shows the error on the Heading column:<br />
<br />
  `Heading` varchar(509) CHARACTER SET utf8 COLLATE utf8_general_ci GENERATED ALWAYS AS (concat(if(((`UseTitle` = 0) or (`Title` is null)),_utf8mb3&#039;&#039;,concat(`Title`,_utf8mb3&#039; &#039;)),`DonorFirstName`,_utf8mb3&#039; &#039;,`DonorLastName`)) VIRTUAL,<br />
<br />
The squiggly red line is at _utf8mb3&#039;&#039;, right under the &#039;&#039;. It says &quot;Syntax error: extraneous input found - expected &#039;comma&#039;&quot;.<br />
<br />
This is using a very simple generated field for a test, trying to combine only 2 or 3 columns.<br />
It&#039;s very strange that the DDL will create a new table, then give me a syntax error when I try to open the table designer in Workbench.<br />
<br />
Is there a better way to accomplish this rather than a bunch of contats with IF statements like I&#039;m doing?<br />
<br />
Thanks...]]></description>
            <dc:creator>Ron Mittelman</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Mon, 17 Aug 2020 18:28:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,687388,687388#msg-687388</guid>
            <title>Query transform / pivot (2 replies)</title>
            <link>https://forums.mysql.com/read.php?65,687388,687388#msg-687388</link>
            <description><![CDATA[ Hi, I&#039;m new on this, I&#039;m traying to do a Query that works in Access, but not in MySQL.. can anybody help?<br />
<br />
This is my Query:<br />
<br />
TRANSFORM Sum(Total) AS SumOfTotal<br />
SELECT Client, Sum(Total) AS Sum_Total<br />
FROM Remission<br />
WHERE (((Year(DatePay))=2020) AND ((Month(DatePay))=1))<br />
GROUP BY Client, DatePay<br />
PIVOT DatePay;<br />
<br />
Thanks in advance!]]></description>
            <dc:creator>Galilea sanchez</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sun, 03 May 2020 23:49:17 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,683529,683529#msg-683529</guid>
            <title>move a simple db from access to web (1 reply)</title>
            <link>https://forums.mysql.com/read.php?65,683529,683529#msg-683529</link>
            <description><![CDATA[ Hello i have a very simple database in access, a kind of anagraphic, name, date of birth, geneder, nationality and so on<br />
I would like to be able to have a similar application online, so that users can insert data and make simples query(all male, all male from nationality ecc)<br />
I don&#039;t need to take the orignal application in access, i would just need to be able to import the records..about 1500<br />
<br />
I make this for an Onlus, little momney available,  would be great if there is a free solution on line, or maybe a wordpress plugin, in any case not much programming hopefully<br />
<br />
Thanks a lot]]></description>
            <dc:creator>stefano capasso</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Thu, 09 Jan 2020 22:08:27 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,681201,681201#msg-681201</guid>
            <title>SQL Error: 1168&quot;): error calling Python module function DbMySQLRE.reverseEngineer Failed (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,681201,681201#msg-681201</link>
            <description><![CDATA[ Hello All,<br />
<br />
I am Trying to migrate on Sql Server which is running in windows to Linux and getting error as below. Anyone please help me out.<br />
<br />
- Retrieving table ahrs.email...<br />
Traceback (most recent call last):<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\db_mssql_grt.py&quot;, line 266, in reverseEngineer<br />
    result = execute_query(connection, &quot;SHOW CREATE TABLE `%s`.`%s`&quot; % (escape_sql_identifier(schema_name), escape_sql_identifier(table_name)))<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\db_mssql_grt.py&quot;, line 43, in execute_query<br />
    return get_connection(connection_object).executeQuery(query)<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\workbench\db_utils.py&quot;, line 364, in executeQuery<br />
    raise QueryError(&quot;Error executing &#039;%s&#039;\n%s&quot;%(query, error), code, error)<br />
workbench.db_utils.QueryError: Error executing &#039;SHOW CREATE TABLE `ahrs`.`email`&#039;<br />
Unable to open underlying table which is differently defined or of non-MyISAM type or doesn&#039;t exist.<br />
SQL Error: 1168<br />
<br />
Traceback (most recent call last):<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\workbench\wizard_progress_page_widget.py&quot;, line 197, in thread_work<br />
    self.func()<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\migration_schema_selection.py&quot;, line 183, in task_reveng<br />
    self.main.plan.migrationSource.reverseEngineer()<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\migration.py&quot;, line 364, in reverseEngineer<br />
    self.state.sourceCatalog = self._rev_eng_module.reverseEngineer(self.connection, self.selectedCatalogName, self.selectedSchemataNames, self.state.applicationData)<br />
SystemError: QueryError(&quot;Error executing &#039;SHOW CREATE TABLE `ahrs`.`email`&#039;<br />
Unable to open underlying table which is differently defined or of non-MyISAM type or doesn&#039;t exist.<br />
SQL Error: 1168&quot;): error calling Python module function DbMySQLRE.reverseEngineer<br />
ERROR: Reverse engineer selected schemas: QueryError(&quot;Error executing &#039;SHOW CREATE TABLE `ahrs`.`email`&#039;<br />
Unable to open underlying table which is differently defined or of non-MyISAM type or doesn&#039;t exist.<br />
SQL Error: 1168&quot;): error calling Python module function DbMySQLRE.reverseEngineer<br />
Failed]]></description>
            <dc:creator>Deepak Tiwari</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Thu, 05 Dec 2019 09:46:19 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,678668,678668#msg-678668</guid>
            <title>Is there a generator or frontend for MYSQL databases for crud operations like in Microsoft Access? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?65,678668,678668#msg-678668</link>
            <description><![CDATA[ Hello,<br />
<br />
You know that good old Microsoft Access database: On Windows, you can create forms with subforms, views, etc. You can browse trough all the records using forms, edit data, etc.<br />
<br />
It is easy and straightforward; So, I&#039;d like to achieve similar functionality with my MYSQL database on my apache website; Is there some web-form generator or frontend to generate similar interface like Microsoft Access, but in web pages residing on my &#039;contracted&#039; linux web server with apache on it ? (if it&#039;s also responsive it would do better).<br />
<br />
I&#039;m Looking for a semi-automated tool; I don&#039;t want to develop the whole thing myself.<br />
<br />
I imagine that something have to exist that, let&#039;s say, generates a basic form from table CUSTOMERS, and then you can edit it in a web-based form designer...<br />
<br />
And I suppose, as MYSQL is so popular, that it MUST EXIST, and that it shoud be free alternatives there... Am I wrong ?<br />
<br />
Thanks !]]></description>
            <dc:creator>pedro gonzalez</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Thu, 05 Dec 2019 19:46:20 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,678033,678033#msg-678033</guid>
            <title>Linked tables (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,678033,678033#msg-678033</link>
            <description><![CDATA[ Hi,<br />
I have a working msaccess Database but recently I rebuilt the tables in MySQL. On linking the tables, the fields that had primary keys(auto increment) in MySQL are now in number data type in access 2016 instead of AutoNumber, and I can&#039;t change them.  <br />
Any help will be much appreciated.<br />
Fred]]></description>
            <dc:creator>Fred Mwanje</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sun, 08 Sep 2019 19:10:45 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,675909,675909#msg-675909</guid>
            <title>Using Access Linked Tables (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,675909,675909#msg-675909</link>
            <description><![CDATA[ Help me please!<br />
<br />
I have an MS Access 2010 application that has 25 or so users.  Due to corruption issues, I have converted it to MySQL and it is working fine with one exception. The first time one of the &quot;Linked&quot; tables is accessed anywhere in the application, the screen pops up to have the login info entered. I would like to add code to log in from the VBA front end to access each of the linked databases with the user ID and Password before any of the tables are accessed. I can&#039;t seem to get the right VBA code to accomplish this.<br />
<br />
Thanks]]></description>
            <dc:creator>Irvin Vaughan</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Mon, 01 Jul 2019 01:03:45 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,674439,674439#msg-674439</guid>
            <title>ACCESS 2003 and MySQL - problems with linked tables (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,674439,674439#msg-674439</link>
            <description><![CDATA[ Hi,<br />
I have an application developed via MS-ACCESS 2003.<br />
I migrated the data (ACCESS tables) to a MySQL 5.7.25.<br />
Then, I linked the MySQL tables to the ACCESS.<br />
Most of data works correctly (viewing the tables content and accessing the data via the Forms).<br />
I have a problem with 2 table:<br />
<br />
1. Table contains list of activities (5 fields per record): up to 210 records, all works fine. After adding record no. 211, there is a problem: <br />
 when opening the table in ACCESS in view mode, I get the &quot;ODBC - call failed&quot; message, and only 86 records are displayed, where all fields have &quot;#Name?&quot; value.<br />
But, when accessing the table data from the Forms, the data is OK.<br />
<br />
2. Table contains list of people details (name, address, etc.):  In case of few records in this table, all works fine. But when using the full data (197 records), there is a problem:<br />
 In view mode in ACCESS, I can see all data correctly. But I cannot access the data from my Forms. The table and fields are not recognized in the code.<br />
<br />
Hope you can help me with these issues. THANKS!]]></description>
            <dc:creator>Efrat M</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sat, 27 Apr 2019 17:18:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,673716,673716#msg-673716</guid>
            <title>Migration from Access to MySQL (2 replies)</title>
            <link>https://forums.mysql.com/read.php?65,673716,673716#msg-673716</link>
            <description><![CDATA[ I have MS Access for Office 365. I am trying to follow the instructions on how to migrate using MySQL Workbench Migration Wizard. <br />
<br />
I thought that I needed a 64 bit ODBC driver for Access, but according to a tech from Microsoft, there is only a 32 bit driver, but since the 32 bit driver is located in c:\windows\SysWOW64, then it should work. However, when I click on &quot;Open ODBC Administrator&quot; and got to the Drivers tab, there is no Access driver listed. <br />
<br />
Can anyone point me to a step-by-step tutorial as I am completely lost.]]></description>
            <dc:creator>Regev Hindi</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Tue, 02 Apr 2019 17:24:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,673679,673679#msg-673679</guid>
            <title>Migration failing (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,673679,673679#msg-673679</link>
            <description><![CDATA[ I&#039;m following the steps to migrate the databae but I keep getting an error at reverse engineer source step<br />
<br />
Starting...<br />
Connect to source DBMS...<br />
- Connecting...<br />
Connecting to ...<br />
Opening ODBC connection to DSN=Employee19...<br />
Traceback (most recent call last):<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\db_msaccess_re_grt.py&quot;, line 701, in connect<br />
    return MsAccessReverseEngineering.connect(connection, password)<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\db_msaccess_re_grt.py&quot;, line 152, in connect<br />
    con = db_driver.connect(connection, password)<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\workbench\db_driver.py&quot;, line 95, in connect<br />
    connection = library.connect(connection_string, password=password)<br />
pyodbc.Error: (&#039;HY000&#039;, &#039;The driver did not supply an error!&#039;)<br />
<br />
Traceback (most recent call last):<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\workbench\wizard_progress_page_widget.py&quot;, line 70, in run<br />
    self.func()<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\migration_schema_selection.py&quot;, line 168, in task_connect<br />
    if not self.main.plan.migrationSource.connect():<br />
  File &quot;C:\Program Files\MySQL\MySQL Workbench 8.0 CE\modules\migration.py&quot;, line 199, in connect<br />
    self._rev_eng_module.connect(self.connection, self.password or &quot;&quot;)<br />
SystemError: Error(&quot;(&#039;HY000&#039;, &#039;The driver did not supply an error!&#039;)&quot;): error calling Python module function DbMsAccessRE.connect<br />
ERROR: Error during Connect to source DBMS: Error(&quot;(&#039;HY000&#039;, &#039;The driver did not supply an error!&#039;)&quot;): error calling Python module function DbMsAccessRE.connect<br />
ERROR: Exception in task &#039;Connect to source DBMS&#039;: SystemError(&#039;Error(&quot;(\&#039;HY000\&#039;, \&#039;The driver did not supply an error!\&#039;)&quot;): error calling Python module function DbMsAccessRE.connect&#039;,)<br />
<br />
Failed]]></description>
            <dc:creator>Rodney Ort</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Wed, 27 Mar 2019 13:36:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,672353,672353#msg-672353</guid>
            <title>VBScript working with new MYSQL DB, but I can&#039;t update changes via ODBC (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,672353,672353#msg-672353</link>
            <description><![CDATA[ Hello,<br />
<br />
I have successfully migrated my Access databases to MYSQL 5.7 using Workbench 8.0  on a winServer 2012 machine. The pages are showing data and I&#039;m going about changing the connect scripts in hundreds of pages of a site that I built in 1999.<br />
<br />
I&#039;m sticking with VBSCRIPT for now (One big change at a time ;-). The problem is that I can&#039;t get rs.update to work when I try to update db from the web. I get this error:<br />
<br />
Microsoft OLE DB Provider for ODBC Drivers error &#039;80004005&#039;<br />
[MySQL][ODBC 8.0(w) Driver][mysqld-5.7.20-log]Build WHERE -&gt; insert_fields() failed.<br />
<br />
This is my conn script connecting to three tables:<br />
<br />
&lt;%Set Conn_Main = CreateObject(&quot;ADODB.Connection&quot;)<br />
Conn_Main.Open &quot;DSN=vpa_main;&quot;<br />
<br />
Set rsP = CreateObject(&quot;ADODB.Recordset&quot;)<br />
rsP.CursorLocation = 3<br />
rsP.Open &quot;SELECT * FROM people ORDER BY name_last&quot; , conn_main, 3, 3<br />
<br />
Set rsS = CreateObject(&quot;ADODB.Recordset&quot;)<br />
rsS.CursorLocation = 3<br />
rsS.Open &quot;SELECT * FROM schools ORDER BY name&quot; , conn_main, 3, 3<br />
<br />
Set rsSU = CreateObject(&quot;ADODB.Recordset&quot;)<br />
rsSU.CursorLocation = 3<br />
rsSU.Open &quot;SELECT * FROM su ORDER BY name&quot; , conn_main, 3, 3%&gt;<br />
<br />
<br />
<br />
<br />
Then the script in the page opening the &quot;schools&quot; table as a dataset:<br />
<br />
Set rsUser = Server.CreateObject(&quot;ADODB.Recordset&quot;)<br />
SQL = &quot;SELECT * FROM schools WHERE ID = &quot; &amp; SID<br />
rsUser.open SQL, conn_main, 3, 3<br />
<br />
<br />
<br />
I&#039;m connectiong using the ODBC Data Source Administrator (64-bit), Unicode.<br />
<br />
The user is root with all permissions.<br />
<br />
<br />
I&#039;m stuck!!<br />
<br />
Any help would be great!<br />
<br />
Peter]]></description>
            <dc:creator>Peter McConnel</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sun, 27 Jan 2019 19:35:01 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,671242,671242#msg-671242</guid>
            <title>Access not displaying new rows in linked table (3 replies)</title>
            <link>https://forums.mysql.com/read.php?65,671242,671242#msg-671242</link>
            <description><![CDATA[ I have successfully made a linked table from access to my MySQL database and it successfully writes changes made in one to the other.  However, if I add a new row to my MySQL table is does not show up in access.  How can I get the new row to be displayed automatically?]]></description>
            <dc:creator>Matthew Bennett</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sun, 27 Jan 2019 19:50:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,667283,667283#msg-667283</guid>
            <title>Access to MySql (1 reply)</title>
            <link>https://forums.mysql.com/read.php?65,667283,667283#msg-667283</link>
            <description><![CDATA[ I wish to convert from MS Access to MySql in my VB6 programs.<br />
<br />
I am using Access now with DAO and wish to change my VB6 programs to use MySql with the minimum of changes. <br />
<br />
1. Can I connect via say ODBC directly and update and edit directly with recordsets from my VB6 program as I do in DAO or even ADO or do I have to use PHP?<br />
<br />
2. Does MySql have individual files which I can copy from computer to computer like Access or is it a total installation which is needed to function as a database.<br />
<br />
Thanks.<br />
PK]]></description>
            <dc:creator>PK Odendaal</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Tue, 26 Jun 2018 19:48:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,665454,665454#msg-665454</guid>
            <title>SQL &amp; substring function (2 replies)</title>
            <link>https://forums.mysql.com/read.php?65,665454,665454#msg-665454</link>
            <description><![CDATA[ Odd situation:<br />
<br />
This works fine stand alone test in php MyAdmin SQL:<br />
select concat(substring(forename, 1,1),&#039;bwm&#039; ,substring(lastname, 1, 1)) from users where user_id = 152;<br />
<br />
Output WbwmW for example.<br />
<br />
However when same code included as parameter for placeholder:<br />
<br />
Error Warn Log:<br />
<br />
[Sat Apr  7 19:13:06 2018] update_tables.cgi: insert statement =  &#039;insert into users (user_id,username,password,pin,position,forename,lastname,business,address1,address2,city,state,zip, email, phone_home, phone_cell, MJ, MD, DD, DP, comments) values ((SELECT AUTO_INCREMENT FROM  information_schema.TABLES WHERE TABLE_SCHEMA=DATABASE() AND TABLE_NAME=&#039;users&#039;),CONCAT(&#039;bwm&#039;,  (SELECT AUTO_INCREMENT FROM information_schema.TABLES WHERE  TABLE_SCHEMA=DATABASE()AND  TABLE_NAME=&#039;users&#039;)), ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)&#039; at update_tables.cgi line 973.<br />
<br />
<br />
$value = $sth-&gt;execute ($password_1, (select concat(substring($forename_1, 1,1),&#039;bwm&#039; ,substring($lastname_1, 1, 1))), $position_1, $forename_1, $lastname_1, $business_1, $address1_1, $address2_1, $city_1, $state_1, $zip_1, $email_1, $phone_home_1, $phone_cell_1, $MJ_1, $MD_1, $DD_1, $DP_1, $comments_1) or die &quot;Unable to execute query: &quot; . $sth-&gt;errstr;<br />
<br />
<br />
[Sat Apr  7 19:13:06 2018] update_tables.cgi: Undefined subroutine &amp;update_tables::substring called at update_tables.cgi line 979.<br />
<br />
Undefined subroutine. Strange.]]></description>
            <dc:creator>Robert Tulloch</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sun, 08 Apr 2018 14:20:26 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,665449,665449#msg-665449</guid>
            <title>ALTER TABLE FOREIGN (3 replies)</title>
            <link>https://forums.mysql.com/read.php?65,665449,665449#msg-665449</link>
            <description><![CDATA[ Hi:<br />
<br />
  Three tables. users, users_initial and users_dues<br />
<br />
Trying to set relation form users_dues to users_initial in php MyAdmin SQL<br />
<br />
SQL query:<br />
<br />
ALTER TABLE users_dues<br />
ADD FOREIGN KEY (user_id) <br />
REFERENCES users_initial(user_id)<br />
ON DELETE CASCADE<br />
ON UPDATE CASCADE;<br />
<br />
MySQL said: Documentation<br />
#1146 - Table &#039;bwmjcmus_mem_mgr.users_dues&#039; doesn&#039;t exist<br />
<br />
The table does exist.  Don&#039;t understand<br />
<br />
bwmjcmus_mem_mgr<br />
<br />
    Procedures<br />
    Tables<br />
     Tables<br />
        sessions<br />
        users<br />
        users-dues<br />
        users-initial<br />
<br />
Also, why isn&#039;t there an ON INSERT CASCADE?]]></description>
            <dc:creator>Robert Tulloch</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Sun, 08 Apr 2018 00:56:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,665266,665266#msg-665266</guid>
            <title>Stored Procedure And Corsor (10 replies)</title>
            <link>https://forums.mysql.com/read.php?65,665266,665266#msg-665266</link>
            <description><![CDATA[ Hi:<br />
<br />
  Want to use SP. Send it unique record id number, use that in a fetch and return the unique record id number of the record the cursor has moved to. Use that returned unique record id to load that corresponding record into form fields.<br />
<br />
  Question: Cursor is non-scrollable. You can only fetch rows in order determined by <br />
select statement.  So if I have two SP&#039;s, one with a SELECT DESC and another with a SELECT ASC, depending on which one I call, I can scroll back and forth using the two procedures.<br />
<br />
  Is that a correct assumption before I spend time on this?<br />
<br />
Thanks.]]></description>
            <dc:creator>Robert Tulloch</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Mon, 02 Apr 2018 15:48:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,665225,665225#msg-665225</guid>
            <title>Beginning and end of table (6 replies)</title>
            <link>https://forums.mysql.com/read.php?65,665225,665225#msg-665225</link>
            <description><![CDATA[ Is there a flag I can read which will tell me if the pointer is at the beginning or end of a table irrespective of order?]]></description>
            <dc:creator>Robert Tulloch</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Thu, 29 Mar 2018 13:00:37 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,653413,653413#msg-653413</guid>
            <title>Problem starting MySQL (5.5.16) Workbench (no replies)</title>
            <link>https://forums.mysql.com/read.php?65,653413,653413#msg-653413</link>
            <description><![CDATA[ Full and fresh install of MySQL 5.5.16. MySQL Workbench started ok.<br />
After computer restarted, running MySQL WorkBench has encountered a problem, and I should close (or report the bug).<br />
Information received in the dialog window:<br />
Access to the path &#039;C:\Program Files (x86)\MySQL\MySQL Workbench CE 5.2.35\db_utils.pyc&#039; is denied. <a href="https://breakingnewstoday.in/tag/sexless-marriage"  rel="nofollow"><span style="font-size:1pt"><span style="color:white">Sexless marriage</span></span></a><br />
<br />
<br />
<br />
How to repeat:<br />
Click MySQL Workbench CE 5.2.35. The same error occured.]]></description>
            <dc:creator>Mukul chadha</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Tue, 13 Dec 2016 12:14:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?65,653342,653342#msg-653342</guid>
            <title>No Schemata Listed for Access Migration (1 reply)</title>
            <link>https://forums.mysql.com/read.php?65,653342,653342#msg-653342</link>
            <description><![CDATA[ I&#039;ve exact same symptoms as described in <a href="http://forums.mysql.com/read.php?65,646707,646707#msg-646707"  rel="nofollow">http://forums.mysql.com/read.php?65,646707,646707#msg-646707</a>.<br />
<br />
OS: Win 10 64 bit Professional<br />
MySQL: <br />
MySQL Workben: 6.3.7 build 1199 CE (64 bit) Community Edition<br />
Access Product: Not Installed<br />
Access ODBC Driver: 14.00.7010.1000 64 bit<br />
<br />
As mentioned in above post: Documentation shows Access as an option in Database System combobox but I&#039;ve not Access option so chose Generic RDBMS.<br />
<br />
Database System: Generic RDBMS<br />
Connection Method: ODBC Data Source<br />
DSN: Valid DSN<br />
<br />
Below is log from Fetch Schema List screen:<br />
<br />
<br />
Starting...<br />
Connect to source DBMS...<br />
- Connecting to source...<br />
Connecting to ...<br />
Opening ODBC connection to DSN=BTLicUpd...<br />
Connected<br />
Connect to source DBMS done<br />
Check target DBMS connection...<br />
- Connecting to target...<br />
Check target DBMS connection done<br />
Retrieve schema list from source....<br />
- Checking connection...<br />
- Fetching catalog names...<br />
- Fetching schema names...<br />
- Fetching schema names from D:\Dev\BTechSoft\Received Files\BTLicense - Upd.accdb...<br />
- Finished<br />
Retrieve schema list from source finished<br />
Finished performing tasks.<br />
<br />
Now, clicking Next takes me to Schema Selection screen but there is no schema listed and the Next button is disabled.<br />
<br />
I wrote a little PowerShell script and connecting to same DSN and it successfully lists all the tables. So, obviously the Access file itself is good; the DSN is good too. Something is amiss in MySQL Migration Utility.<br />
<br />
PowerShell Script:<br />
<br />
$conn = new-object System.Data.odbc.odbcconnection<br />
$conn.ConnectionString = &quot;DSN=&lt;ValidDSN&gt;;Uid=Admin;Pwd=&lt;validPwd&gt;;&quot;<br />
$conn.Open()<br />
$schema = $conn.GetSchema(&quot;Tables&quot;)<br />
echo $schema<br />
<br />
Please help. Our ability to use MySQL in place Access hinges on successful migration of current Access db. Thanks.]]></description>
            <dc:creator>G Raja</dc:creator>
            <category>Microsoft Access</category>
            <pubDate>Mon, 12 Dec 2016 09:23:39 +0000</pubDate>
        </item>
    </channel>
</rss>
