<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'MySQL' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'MySQL' posted on the 'Delphi and Kylix' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Mon, 17 Jun 2013 22:33:45 -0700</pubDate>
    <lastBuildDate>Mon, 17 Jun 2013 22:33:45 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>MySQL</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323195/mysql/</link>
      <description>Hi Experts and Developers,&lt;br /&gt;
&lt;br /&gt;
I am just starting out on using MySQL and dbExpress in Delphi. Since I have been developing Database applications using BDE in Delphi I have always kept my database [tables] in a subdirectory of my application directory.&lt;br /&gt;
&lt;br /&gt;
My question is: Is it possible to still use the same layout for my new projects using MySQL or does MySQL impose a restriction on the location of the database. I have noted there is a data subdirectory in MySQL home directory that houses all databases. I would still wish to keep my databases in my project directory outside MySQL!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323195/mysql/</guid>
      <pubDate>Tue, 06 Dec 2005 03:11:24 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>Re: MySQL</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323200/re-mysql/#323200</link>
      <description>&lt;strong&gt;&lt;span style="color: Red;"&gt;This message was edited by zibadian at  2005-12-6 4:10:48&lt;/span&gt;&lt;/strong&gt;&lt;hr /&gt;&lt;br /&gt;
: Hi Experts and Developers,&lt;br /&gt;
: &lt;br /&gt;
: I am just starting out on using MySQL and dbExpress in Delphi. Since I have been developing Database applications using BDE in Delphi I have always kept my database [tables] in a subdirectory of my application directory.&lt;br /&gt;
: &lt;br /&gt;
: My question is: Is it possible to still use the same layout for my new projects using MySQL or does MySQL impose a restriction on the location of the database. I have noted there is a data subdirectory in MySQL home directory that houses all databases. I would still wish to keep my databases in my project directory outside MySQL!&lt;br /&gt;
: &lt;br /&gt;
This website might help: &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/windows-create-option-file.html"&gt;http://dev.mysql.com/doc/refman/5.0/en/windows-create-option-file.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I found it using the search terms: "mysql "data directory"" in google.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323200/re-mysql/#323200</guid>
      <pubDate>Tue, 06 Dec 2005 04:09:32 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>MySQL: "mysql "data directory""</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323343/mysql-mysql-data-directory/#323343</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Thanks a lot for the prompt reply. Am reading it right now.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323343/mysql-mysql-data-directory/#323343</guid>
      <pubDate>Wed, 07 Dec 2005 09:39:48 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>MySQL Database path</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323344/mysql-database-path/#323344</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I read the article but still I haven't been satisfied with the proposed solution. All databases are still kept under the MySQL data directory while I would like to specify the path to my database that is outside the normal data directory under MySQL. My data directory will be under my project directory for example: C:\CodeBase\HotelMan\Data. Is it possible for me to access a database using dbExpress and Mysql that is located outside MySQL?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323344/mysql-database-path/#323344</guid>
      <pubDate>Wed, 07 Dec 2005 09:52:42 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>Re: MySQL Database path</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323430/re-mysql-database-path/#323430</link>
      <description>: Hi,&lt;br /&gt;
: &lt;br /&gt;
: I read the article but still I haven't been satisfied with the proposed solution. All databases are still kept under the MySQL data directory while I would like to specify the path to my database that is outside the normal data directory under MySQL. My data directory will be under my project directory for example: C:\CodeBase\HotelMan\Data. Is it possible for me to access a database using dbExpress and Mysql that is located outside MySQL?&lt;br /&gt;
: &lt;br /&gt;
In the option file place this line:&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
# set datadir to the location of your data directory
datadir=C:\CodeBase\HotelMan\Data
&lt;/pre&gt;&lt;br /&gt;
as described in the article.&lt;br /&gt;
Or you could create a batch file, which launches your MySQL server with the --datadir option (also in the article).&lt;br /&gt;
As far as I can tell from reading the article this will tell MySQL to look for the data in the specified directory.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323430/re-mysql-database-path/#323430</guid>
      <pubDate>Thu, 08 Dec 2005 00:36:26 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>MySQL Database path</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323445/mysql-database-path/#323445</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
My point is that different projects will have their databases in different locations! These different locations may be scattered on the drive(filesystem) and not necessarily under a single parent directory.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323445/mysql-database-path/#323445</guid>
      <pubDate>Thu, 08 Dec 2005 02:58:43 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>Re: MySQL Database path</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323571/re-mysql-database-path/#323571</link>
      <description>: Hi,&lt;br /&gt;
: &lt;br /&gt;
: My point is that different projects will have their databases in different locations! These different locations may be scattered on the drive(filesystem) and not necessarily under a single parent directory.&lt;br /&gt;
: &lt;br /&gt;
This is beyond my knowledge. Perhaps you have more success on the MySQL messageboard, because it is not really a Delphi problem as more a MySQL problem.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323571/re-mysql-database-path/#323571</guid>
      <pubDate>Fri, 09 Dec 2005 02:45:08 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>MySQL Database path</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/323195/323602/mysql-database-path/#323602</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Thanks a lot. I'll try my luck.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/323195/323602/mysql-database-path/#323602</guid>
      <pubDate>Fri, 09 Dec 2005 09:08:54 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
  </channel>
</rss>