Hello.
Is it possible in nuBuilder in php procedure create temporary table in then open form with that table in as data for subform?
So step by step
1. Call php procedure
2. In php create temp table (like __my213423424__) or put new rows in special table (mytemptable)
3. Open data form with subform
4. That subform shows me mytemptable’s row by row.
Can I do that in nyBuilder?
--
Maxim
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Temptable in special data form
Re: Temptable in special data form
Maxim,
You could try something like this..
Steps..
1.On Before Load
2. In SQL of Subform Object
Steven
You could try something like this..
Steps..
1.On Before Load
Code: Select all
nuRunQuery("CREATE TABLE #browseTable# SELECT * FROM items");
Code: Select all
nuRunQuery("SELECT * FROM #browseTable#");
-
- Posts: 42
- Joined: Thu Aug 09, 2012 8:52 pm
Re: Temptable in special data form
Very good way for me use #browseTable#. Thank you. Now I don't obligate delete temptable.
Some problem
If I put this code
in 'Before open' tab nuBuilder get error ("can't execute SQL code"). I check in wiki http://wiki.nubuilder.com/tiki-index.ph ... structure= this hash variables don't belong to Before Open event.
If I put this code in Before Browse it don't execute when I directly go to form with datafields.
And one more question in this topic.
Can I run Form from JavaScript and give some variables to this Form? Like java function runIt(pCode, param1, param2, param3…)
--
Maxim
Some problem
If I put this code
Code: Select all
nuRunQuery("CREATE TABLE #browseTable# SELECT * FROM orders");
If I put this code in Before Browse it don't execute when I directly go to form with datafields.
And one more question in this topic.
Can I run Form from JavaScript and give some variables to this Form? Like java function runIt(pCode, param1, param2, param3…)
--
Maxim
Re: Temptable in special data form
Maxim,
You're right about browseTable but try recordID eg.
And if you create another table with a record holding every temp#recordID# created. You could loop through and delete them at some point.
Question 2.
The only parameter that gets passed is a new thing explained here.
http://www.youtube.com/watch?v=6d_nYErMGPI
Steven
Steven
You're right about browseTable but try recordID eg.
Code: Select all
nuRunQuery("CREATE TABLE `temp#recordID#` SELECT * FROM orders");
Question 2.
The only parameter that gets passed is a new thing explained here.
http://www.youtube.com/watch?v=6d_nYErMGPI
Steven
Steven