<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — about database]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=606&amp;type=atom" />
	<updated>2009-04-28T22:16:19Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=606</id>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2395#p2395" />
			<content type="html"><![CDATA[<p>Only primary keys as used as foreign keys, so if you wish you can translate any unique key which is not primary. But translated text have to be unique of course.<br />The double auto_increment clause is MySQL dump issue, you can delete one of the two if you wish.<br />Janusz</p>]]></content>
			<author>
				<name><![CDATA[itronics]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=89</uri>
			</author>
			<updated>2009-04-28T22:16:19Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2395#p2395</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2379#p2379" />
			<content type="html"><![CDATA[<p>CREATE TABLE `0_credit_status` (<br />&nbsp; `id` int(11) NOT NULL auto_increment,<br />&nbsp; `reason_description` char(100) NOT NULL default &#039;&#039;,<br />&nbsp; `dissallow_invoices` tinyint(1) NOT NULL default &#039;0&#039;,<br />&nbsp; `inactive` tinyint(1) NOT NULL default &#039;0&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`id`),<br />&nbsp; UNIQUE KEY `reason_description` (`reason_description`)<br />) TYPE=MyISAM AUTO_INCREMENT=5&nbsp; AUTO_INCREMENT=5 ;</p><p>for example, i want to translate the reason_description in the credit_status table.</p><p>and why in this table, there are 2 AUTO_INCREMENT?</p><p>thanks a lot</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-27T15:21:00Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2379#p2379</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2375#p2375" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>what about foreign key?</p></blockquote></div><p>Which unique keys do you want to translate?<br />JAnusz</p>]]></content>
			<author>
				<name><![CDATA[itronics]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=89</uri>
			</author>
			<updated>2009-04-27T07:14:36Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2375#p2375</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2361#p2361" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>joe wrote:</cite><blockquote><p>Regarding the differences between the &#039;tax_group_items&#039; fields in en_US-demo.sql and en_US-new.sql, you are right. In en_US-demo.sql there is a field called &#039;included_in_price&#039;. This field is obsolete and will be removed in the next release.</p><p>/Joe</p></blockquote></div><p>thanks Joe</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-26T14:14:52Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2361#p2361</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2360#p2360" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>itronics wrote:</cite><blockquote><p>Why not? But you should also use the same translated value in other table, if it is used as foreign key.<br />Janusz</p></blockquote></div><p>thanks Janusz </p><p>what about foreign key?</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-26T14:13:02Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2360#p2360</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2351#p2351" />
			<content type="html"><![CDATA[<p>Regarding the differences between the &#039;tax_group_items&#039; fields in en_US-demo.sql and en_US-new.sql, you are right. In en_US-demo.sql there is a field called &#039;included_in_price&#039;. This field is obsolete and will be removed in the next release.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2009-04-25T15:31:56Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2351#p2351</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2348#p2348" />
			<content type="html"><![CDATA[<p>hi Janusz.</p><p>i didn&#039;t see the foreign key in the sql script. where is it?&nbsp; in the en_US_new.sql just have the primary key, unique key, key, there are not foreign key constraint.</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-25T15:00:02Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2348#p2348</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2347#p2347" />
			<content type="html"><![CDATA[<p>Why not? But you should also use the same translated value in other table, if it is used as foreign key.<br />Janusz</p>]]></content>
			<author>
				<name><![CDATA[itronics]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=89</uri>
			</author>
			<updated>2009-04-25T14:44:45Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2347#p2347</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2346#p2346" />
			<content type="html"><![CDATA[<p>another question. i have a little ideas about database. the unique key in the table can be tanslated into chinese?</p><p>thanks <br />/leo</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-25T13:44:32Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2346#p2346</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2345#p2345" />
			<content type="html"><![CDATA[<p>my meaning is that the table fields are different.</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-25T13:42:46Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2345#p2345</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2343#p2343" />
			<content type="html"><![CDATA[<p>It is because there is more demo data in the en_US-demo.sql file.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2009-04-25T12:45:01Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2343#p2343</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[about database]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=2341#p2341" />
			<content type="html"><![CDATA[<p>hi.<br />why the table 0_tax_group_items in the en_US_new.sql different from in the en_US_demo.sql</p><p>/leo</p><p>thanks everyone for help.</p>]]></content>
			<author>
				<name><![CDATA[Leo]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=353</uri>
			</author>
			<updated>2009-04-25T12:27:17Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=2341#p2341</id>
		</entry>
</feed>
