Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

SQL Querry - RSForm data to ARI Data Tables
(1 viewing) (1) Guest
Go to bottomPage: 1234
TOPIC: SQL Querry - RSForm data to ARI Data Tables
#34947
Re:SQL Querry - RSForm data to ARI Data Tables 11 Years, 5 Months ago Karma: 0
It's ok now! thanks!

And other guestions are:

1. In the SQL querry the first column is "DateSubitted" but it doesn't show in the table. How to make it visible?
2. In the SQL querry I specified the order of column:

'DateSubitted','surname','Name','birth','place_of_birth' but in the table is different ( the surname is the last...)

3. How to hide in table the first column, "id"?
The administrator has disabled public write access.
 
#34951
Re:SQL Querry - RSForm data to ARI Data Tables 11 Years, 5 Months ago Karma: 748
1. The table doesn't contain column "DateSubited" or form field with this name. You can see table columns using PHPMyAdmin or other DB manager which is usually provided by hosting provider. List of available form fields you can see if execute the following SQL query:


SELECT
DISTINCT FieldName
FROM
`meox_rsform_submission_values`
WHERE
FormId = 5


2. It is not columns order, it just name of form fields which you want to show. The table doesn't contain any column which can help to change order of fields. It is not possible to order fields by name in ascending or descending order using MySQL functionality.

3. Set "Columns settings -> ID" parameter to 0 value and "Columns settings -> Hidden" parameter to "Yes":



Regards,
ARI Soft
The administrator has disabled public write access.
 
#34952
Re:SQL Querry - RSForm data to ARI Data Tables 11 Years, 5 Months ago Karma: 0
Thanks for your help!
Last Edit: 2012/12/16 16:49 By anatol06.
The administrator has disabled public write access.
 
#34953
Re:SQL Querry - RSForm data to ARI Data Tables 11 Years, 5 Months ago Karma: 0
1. Strange, in admin panel of Joomla I have this column as first and would be very useful to have it in ARI table. It makes possible to filter by submission date.

2. If this is just an order of fields, then the fields in the form and database are ordered as I need, see the screenshot I send the first.
Why then they should be in ARI table in different order?
Thinking a little, I found the solution somehow spontaneously, and this makes me happy now
I just changed in Querry the:

ORDER BY SubmissionId DESC, FieldName ASC
to
ORDER BY SubmissionId DESC
Now the order of columns in the ARI table is the same as in my table in backend.

3. I did, it is OK now!

Thanks a lot again!
Last Edit: 2012/12/16 17:11 By anatol06.
The administrator has disabled public write access.
 
#34954
Re:SQL Querry - RSForm data to ARI Data Tables 11 Years, 5 Months ago Karma: 748
1. Send a screenshot where we can see the column.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#34956
Re:SQL Querry - RSForm data to ARI Data Tables 11 Years, 5 Months ago Karma: 0
I've sent you again the first email with the this screenshot.
The administrator has disabled public write access.
 
Go to topPage: 1234