MyDAC

Frequently Asked Questions

This page contains a list of Frequently Asked Questions for MySQL Data Access Components.

If you have encounter a question with using MyDAC, please browse through this list first. If this page does not answer your question, refer to the Getting Support topic in MyDAC help.

 

Installation and Deployment
  1. I am having a problem installing MyDAC or compiling MyDAC-based projects...

    You may be having a compatibility issue that shows up in one or more of the following forms:

    • Get a "Setup has detected already installed DAC packages which are incompatible with current version" message during MyDAC installation.
    • Get a "Procedure entry point ... not found in ... " message when starting IDE.
    • Get a "Unit ... was compiled with a different version of ..." message on compilation.

    You can have such problems if you installed incompatible MyDAC, SDAC, ODAC or IBDAC versions. All these products use common base packages. The easiest way to avoid the problem is to uninstall all installed DAC products and then download from our site and install the last builds.

  2. What software should be installed on a client computer for MyDAC-based applications to work?

    Usually, you do not need any additional files. The only exceptions to this rule are listed below:

    • If you are using MySQL Embedded server (if you are using TMyConnection with TMyConnection.Options.Embedded = True or TMyEmbConnection), you need the server itself (libmysqld.dll) and the service files for it, for example errmsg.sys.
    • If you are connecting in Client mode, (TMyConnection.Options.Direct = False), you need libmysql.dll.
    • If you are using SSL (TMyConnection.Options.Protocol = mpSSL), you need the OpenSSL library files - ssleay32.dll and libeay32.dll.
  3. When I try to connect to the server, I get an error "MySQL client library couldn't be loaded."

    You are using TMyConnection.Options.Direct := False mode and the client library is not available for your application.
    Windows: You should copy client file libmysql.dll to a folder available to the executable unit of your program. For example, to the folder containing the executable or to the Windows system folder. For more details, see the description of LoadLibrary and the PATH environment variable.
    Linux: You should copy the client file libmysqlclient.so.X to the folder available to the executable unit of your program. For more details, see the description of the dlopen function and the LD_LIBRARY_PATH environment variable.

Licensing and Subscriptions
  1. Am I entitled to distribute applications written with MyDAC?

    If you have purchased a full version of MyDAC, you are entitled to distribute pre-compiled programs created with its use. You are not entitled to propagate any components inherited from MyDAC or using MyDAC source code. For more information see the License.rtf file in your MyDAC installation directory.

  2. Can I create components using MyDAC?

    You can create your own components that are inherited from MyDAC or that use the MyDAC source code. You are entitled to sell and distribute compiled application executables that use such components, but not their source code and not the components themselves.

  3. What licensing changes can I expect with MyDAC 5.00?

    The basic MyDAC license agreement will remain the same. With MyDAC 5.00, the MyDAC Edition Matrix will be reorganized and a new MyDAC Subscription Program will be introduced.

  4. What do the MyDAC 5.00 Edition Levels correspond to?

    MyDAC 5.00 will come in six editions: Trial, Standard, Professional, Professional with Sources, Developer, and Developer with Sources.

    When you upgrade to the new version, your edition level will be automatically updated using the following Edition Correspondence Table.


    Edition Correspondence Table for Upgrading to MyDAC 5.00

    Old Edition LevelNew Edition Level
    - No Correspondence -MyDAC Standard Edition
    MyDAC Standard EditionMyDAC Professional Edition
    MyDAC Professional EditionMyDAC Professional Edition with Sources
    - No Correspondence -MyDAC Developer Edition
    - No Correspondence -MyDAC Developer Edition with Sources
    MyDAC Trial Edition MyDAC Trial Edition

    The feature list for each edition can be found in the MyDAC documentation and on the MyDAC website.

  5. I have a registered version of MyDAC. Will I need to pay to upgrade to future versions?

    After MyDAC 5.00, all upgrades to future versions are free to users with an active MyDAC Subscription.

    Users that have a registration for versions of MyDAC prior to MyDAC 5.00 will have to first upgrade to MyDAC 5.00 to jump in on the Subscription program.

  6. What are the benefits of the MyDAC Subscription Program?

    The MyDAC Subscription Program is an annual maintenance and support service for MyDAC users.

    Users with a valid MyDAC Subscription get the following benefits:

    • Access to new versions of MyDAC when they are released
    • Access to all MyDAC updates and bug fixes
    • Product support through the MyDAC Priority Support program
    • Notification of new product versions

    Priority Support is an advanced product support program which offers you expedited individual assistance with MyDAC-related questions from the MyDAC developers themselves. Priority Support is carried out over email and has a two business day response policy.

    The MyDAC Subscription Program is available for registered users of MyDAC 5.00 and higher.

  7. Can I use my version of MyDAC after my Subscription expires?

    Yes, you can. MyDAC version licenses are perpetual.

  8. I want a MyDAC Subscription! How can I get one?

    An annual MyDAC Subscription is included when ordering or upgrading to any registered (non-Trial) edition of MyDAC 5.00 or higher.

    You can renew your MyDAC Subscription on the MyDAC Ordering Page. For more information, please contact [email protected].

  9. Does this mean that if I upgrade to MyDAC 5 from MyDAC 4, I'll get an annual MyDAC Subscription for free?
    Yes.
  10. How do I upgrade to MyDAC 5.00?

    To upgrade to MyDAC 5.00, you can get a Version Update from the MyDAC Ordering Page. For more information, please contact [email protected].

Performance
  1. How productive is MyDAC?

    MyDAC uses a low-level protocol to access the database server. This allows MyDAC to achieve high performance. From time to time we compare MyDAC with other products, and MyDAC always takes first place.

  2. Why does the Locate function work so slowly the first time I use it?

    Locate is performed on the client. So if you had set FetchAll to False when opening your dataset, cached only some of the rows on the client, and then invoked Locate, MyDAC will have to fetch all the remaining rows from the server before performing the operation. On subsequent calls, Locate should work much faster.

    If the Locate method keeps working slowly on subsequent calls or you are working with FetchAll=True, try the following. Perform local sorting by a field that is used in the Locate method. Just assign corresponding field name to the IndexFieldNames property.

How To
  1. How can I enable syntax highlighting in MyDAC component editors at design time?

    Download and install dbForge Fusion for MySQL. In addition to syntax highlighting, MySQL Developer Tools provides a lot of additional features.
    Alternatively, you can download and install the freeware SynEdit component set.

  2. How can I quickly convert a project from BDE to MyDAC?

    To quickly migrate your project from BDE you can use the BDE Migration Wizard. To start it, open your project and choose BDE Migration Wizard from the MyDAC menu of your IDE.

  3. How can I determine which version of MyDAC I am using?

    You can determine your MyDAC version number in several ways:

    • During installation of MyDAC, consult the MyDAC Installer screen.
    • After installation, see the history.html file in your MyDAC installation directiory.
    • At design-time, select MySQL | About MyDAC from the main menu of your IDE.
    • At run-time, check the value of the MydacVersion and DACVersion constants.
  4. How can I stop the cursor from changing to an hour glass during query execution?

    Just set the DBAccess.ChangeCursor variable to False anywhere in your program. The cursor will stop changing after this command is executed.

  5. How can I execute a query saved in the SQLInsert, SQLUpdate, SQLDelete, or SQLRefresh properties of a MyDAC dataset?

    The values of these properties are templates for query statements, and they cannot be manually executed. Usually there is no need to fill these properties because the text of the query is generated automatically.

    In special cases, you can set these properties to perform more complicated processing during a query. These properties are automatically processed by MyDAC during the execution of the Post, Delete, or RefreshRecord methods, and are used to construct the query to the server. Their values can contain parameters with names of fields in the underlying data source, which will be later replaced by appropriate data values.

    For example, you can use the SQLInsert template to insert a row into a query instance as follows.

    1. Fill the SQLInsert property with the parameterized query template you want to use.
    2. Call Insert.
    3. Initialize field values of the row to insert.
    4. Call Post.

    The value of the SQLInsert property will then be used by MyDAC to perform the last step.

    Setting these properties is optional and allows you to automatically execute additional SQL statements, add calls to stored procedures and functions, check input parameters, and/or store comments during query execution. If these properties are not set, the MyDAC dataset object will generate the query itself using the appropriate insert, update, delete, or refresh record syntax.

  6. How can I get a list of the databases on the server?

    Use the TMyConnection.GetDatabaseNames method.

  7. How can I get a list of the tables list in a database?
    Use the TMyConnection.GetTableNames method.
  8. Some questions about the visual part of MyDAC

    The following situations usually arise from the same problem:

    • I set the Debug property to True but nothing happens!
    • While executing a query, the screen cursor does not change to an hour-glass.
    • Even if I have LoginPromp set to True, the connect dialog does not appear.

    To fix this, you should add the MyDacVcl (for Windows) or MyDacClx (for Linux) unit to the uses clause of your project.

General Questions
  1. I would like to develop an application that works with MySQL Server. Should I use MyDAC or DbxMda?

    DbxMda is our dbExpress driver for MySQL. dbExpress technology serves for providing a more or less uniform way to access different servers (SQL Server, MySQL, Oracle and so on). It is based on drivers that include server-specific features. Like any universal tool, in many specialized cases dbExpress providers lose some functionality. For example, the dbExpress design-time is quite poor and cannot be expanded.

    MyDAC is a specialized set of components for MySQL, which has advanced server-specific design-time and a component interface similar to that of BDE.

    We tried to include maximal support of MySQL-specific features in both DbxMda and MyDAC. However, the nature of dbExpress technology has some insurmountable restrictions. For example, Unicode fields cannot be passed from a driver to dbExpress.

    MyDAC and DbxMda use the same kernel and thus have similar performance. In some cases dbExpress is slower because data undergoes additional conversion to correspond to dbExpress standards.

    To summarise, if it is important for you to be able to quickly adapt your application to a database server other than MySQL, it is probably better to use DbxMda. In other cases, especially when migrating from BDE or ADO, you should use MyDAC.

  2. Are the MyDAC connection components thread-safe?

    Yes, MyDAC is thread-safe but there is a restriction. The same TMyConnection object cannot be used in several threads. So if you have a multithreaded application, you should have a TMyConnection object for each thread that uses MyDAC.

  3. Behaviour of my application has changed when I upgraded MyDAC. How can I restore the old behaviour with the new version?

    We always try to keep MyDAC compatible with previous versions, but sometimes we have to change behaviour of MyDAC in order to enhance its functionality, or avoid bugs. If either of changes is undesirable for your application, and you want to save the old behaviour, please refer to the "Compatibility with previous versions" topic in MyDAC help. This topic describes such changes, and how to revert to the old MyDAC behaviour.

  4. When editing a DataSet, I get an exception with the message 'Update failed. Found %d records.' or 'Refresh failed. Found %d records.'

    This error occurs when the database server is unable to determine which record to modify or delete. In other words, there are either more than one record or no records that suit the UPDATE criteria. Such situation can happen when you omit the unique field in a SELECT statement (TCustomDADataSet.SQL) or when another user modifies the table simultaneously. This exception can be suppressed. Refer to TCustomMyDataSet.Options.StrictUpdate topic in MyDAC help for more information.

  5. I have problems using BIGINT and INT UNSIGNED fields as key fields in master/detail relationships, and accessing values of such fields through the Field.Value property.

    Fields of this type are represented in Delphi by TLargeIntField objects. In some versions of Delphi, you cannot access these fields through the Value property (for more information see the SetVarValue protected method of TLargeintField in the DB unit). To avoid this problem, you can change the field type to INT, which is usually sufficient for key fields. Alternatively, you can avoid using Value.
    For master/detail relationships the problem can be avoided only by changing type of the key field to INT, as Delphi's master/detail mechanism works through Field.Value.

  6. On accessing server I get a 'MySQL server has gone away' or 'Lost connection to MySQL server during query' error.

    First of all, you should find out what causes the problem. The list of most frequent reasons for this error to occur is below.

    • Client side: The value of TMyConnection.ConnectionTimeout or TCustomMyDataSet.CommandTimeout is too small. To check this hypothesis, try setting TCustomMyDataSet.CommandTimeout to 0 (infinitive) and TMyConnection.ConnectionTimeout to 300.
    • Server side: MySQL server has closed the connection. You can read a detailed description of all possible reasons for this to happen in the MySQL Reference Manual. Almost always it is because the value of wait_timeout variable is too small. Try increasing it. If this solution is not possible (for example, because you don't have enough rights), you should invoke MyConnection.Ping with an interval less than wait_timeout. Use TTimer in TMyConnection thread to accomplish this task.
    • Unstable connection (GPRS etc). In case of unstable connection you can adapt MyDAC to work in such conditions by changing some of its settings. For more information please see the "Working in Unstable Networks" article in the MyDAC help documentation.

    If the connection is lost, MyDAC tries to reconnect to server. However, your last command will probably not be executed, and you should repeat it again. MyDAC does not try to reconnect if a transaction has started or if at least one of statements is prepared.

  7. Some problems using TCustomDADataSet.FetchAll=False mode

    The following problems may appear when using FetchAll=False mode:

    • I have problems working with temporary tables.
    • I have problems working with transactions.
    • Sometimes my application hangs on applying changes to the database.

    Usage of FetchAll=False mode has many advantages; however, it also has some restrictions since it requires an additional connection to server for data fetching to be created. The additional connection is created to prevent the main connection from blocking.

    These problems can be avoided by setting the FetchAll property. Please see description of the FetchAll propery and the CreateConnection option in MyDAC help for more information.

    Another alternative that prevents the application from hanging is to switch to the InnoDB storage engine from MyISAM (FetchAll stays False). An application may hang because MyISAM tables can get locked in a read/write collision. If you try to update a table that is not fetched out, MySQL blocks the thread and waits untill the table is completely fetched. For details please refer to the MySQL Reference Manual, the Locking Issues section.

  8. I get an error when opening a Stored Procedure that returns a result set.
    Probably this is a bug of the MySQL Server protocol with prepared stored procedures that return record sets. It occurs in the following cases:
    • After a call to the Prepare method of MyStoredProc, if the latter had already prepared and opened. The following piece of code demonstrates the problem:
      MyStoredProc.Prepare;
      MyStoredProc.Open;
      MyStoredProc.UnPrepare;
      MyStoredProc.Prepare;
    • After a call to the MyStoredProc.Execute method, if the stored procedure returns more than one record set.
© 1997-2024 Devart. All Rights Reserved. Request Support DAC Forum Provide Feedback