<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Database storage order</title>
		<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order</link>
		<description>Gravity Support Forums Topic: Database storage order</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 19:22:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/database-storage-order" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-36241</link>
			<pubDate>Mon, 26 Sep 2011 15:28:42 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">36241@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm not aware of any scripts that are already created that do this.  Hook wise there are no export related hooks.  You'd have to duplicate the existing export code and use that as a base to write your own custom export functionality.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>skyrocket on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-36179</link>
			<pubDate>Sun, 25 Sep 2011 13:49:29 +0000</pubDate>
			<dc:creator>skyrocket</dc:creator>
			<guid isPermaLink="false">36179@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We're looking to do something similar, except in a &#34;batch&#34; mode.  So the user would log in to FileMaker and click a button, which would run a script to:&#60;/p&#62;
&#60;p&#62; - export all the new (unread) entries from Gravity Forms since the last time the script was run&#60;br /&#62;
 - mark all of those entries as &#34;read&#34; inside GF&#60;br /&#62;
 - import all the entries into FM&#60;/p&#62;
&#60;p&#62;This is a little different than the way the GF Add-ons work, since we're not exporting the data when the form is submitted -- instead, we're exporting only when the user requests it&#60;/p&#62;
&#60;p&#62;Are you guys aware of any GF hooks we should be using to do this?  Or perhaps any scripts that are already created that are similar?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4419</link>
			<pubDate>Thu, 01 Apr 2010 16:32:48 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">4419@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Of course, anything is possible.  Our Add-Ons for MailChimp, Campaign Monitor and FreshBooks basically do exactly that only instead of pushing data from a form to another database they push it to these 3rd party services via their API.&#60;/p&#62;
&#60;p&#62;So it's entirely possible to create an Add-On that would allow you to map fields on a form to columns in another database and then push that data to that database when a form is submitted.&#60;/p&#62;
&#60;p&#62;It could be done by reverse engineering one of our add-ons and then customize it to do whatever you want.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tdiaz on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4416</link>
			<pubDate>Thu, 01 Apr 2010 14:20:11 +0000</pubDate>
			<dc:creator>tdiaz</dc:creator>
			<guid isPermaLink="false">4416@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hmmm... okay, you raise a valid point. It's a lot easier to add a row before a column with regards to being dynamic and flexible. &#60;/p&#62;
&#60;p&#62;Now on the other angle, yes, Gravity Forms is a form builder and submission tool, and since most of the time data is collected for another use ..  Yes, the collection would like nice and be easy to generate, it still means we have to work with the data in some other way. &#60;/p&#62;
&#60;p&#62;Perhaps a &#34;converter&#34; can be crafted to push the input data over to another database and then drop it from where it was put originally by the plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4376</link>
			<pubDate>Tue, 30 Mar 2010 15:10:36 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">4376@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Forms are 100% configurable by the end user.  Because of that the form entry data is stored at as an array in a single row to account for the fact that no 2 forms could be a like.&#60;/p&#62;
&#60;p&#62;The ideal situation is a column for each field, however that then means each form needs it's own table and database tables would be added, modified and deleted on the fly as you create and edit forms.  This poses technical hurdles and support issues that would have to be tackled because things would be much more complex.&#60;/p&#62;
&#60;p&#62;Because of the fact the forms are configurable and each one is unique the data is stored in a consistent format, in the same tables, as an array.  The plugin then knows how to display and work with this data format.&#60;/p&#62;
&#60;p&#62;Gravity Forms is a form builder and form submission tool, it isn't designed to be a database data capture tool.  It's primary focus is contact forms and user submitted post creation.&#60;/p&#62;
&#60;p&#62;The data can be exported as CSV and our export tool code could be reproduced to do this on the fly if you wanted to write custom code that could be pulled from a 3rd party application.&#60;/p&#62;
&#60;p&#62;Or the other option is using an API hook and custom PHP to do whatever you want with the data when the form is submitted.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tdiaz on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4367</link>
			<pubDate>Tue, 30 Mar 2010 13:39:55 +0000</pubDate>
			<dc:creator>tdiaz</dc:creator>
			<guid isPermaLink="false">4367@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Okay, so it's not configurable. But, am I correct in how it does it now? &#60;/p&#62;
&#60;p&#62;In which case, thats a deal killer outright for me, almost better to store it in a flat csv file, at least a whole row is a single record unlike this where it's a record for each entry. &#60;/p&#62;
&#60;p&#62;The idea here is to access the form data on the back end with something like FileMaker, using the mysql database as the storage point. This method of data storage sounds nuts.  Maybe I'm wrong, but I've never ever seen form data stored across records.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4344</link>
			<pubDate>Tue, 30 Mar 2010 00:44:36 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">4344@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The data structure for Gravity Forms is not configurable.  You can use available API hooks to store the data wherever you want when a form is submitted, but that requires custom PHP and there isn't a built in point-and-click configuration tool for doing this.  You would have to do it with custom PHP.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tdiaz on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4343</link>
			<pubDate>Mon, 29 Mar 2010 23:04:16 +0000</pubDate>
			<dc:creator>tdiaz</dc:creator>
			<guid isPermaLink="false">4343@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is this a hard question?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tdiaz on "Database storage order"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/database-storage-order#post-4126</link>
			<pubDate>Thu, 18 Mar 2010 18:51:25 +0000</pubDate>
			<dc:creator>tdiaz</dc:creator>
			<guid isPermaLink="false">4126@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to store the form data all in a single record instead of each line item on it's own record?&#60;/p&#62;
&#60;p&#62;Key, First, Last, Address, City, ..&#60;br /&#62;
1, Fred, Flintstone, 2020 Rocky Way, Bedrock .. &#60;/p&#62;
&#60;p&#62;Instead of the way it (appears to do it)&#60;br /&#62;
Key, ID, item, content&#60;br /&#62;
1,  1, first, Fred&#60;br /&#62;
2,  1, last, Flintstone&#60;br /&#62;
3,  1, address, 2020 Rocky Way&#60;br /&#62;
4,  1, city, Bedrock&#60;/p&#62;
&#60;p&#62;The former is a whole lot easier to work with other database front ends, to move data in and out, etc.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
