Hello,
I didn't get any errors untill now. But I'll watch it.
One question:
What is the most efficient way to do the following SQL statements within a Loop:
// Loop Start
SELECT a, b, FROM table 1
INSERT INTO table 2 (c, d) VALUES (1, 2)
SELECT e, f FROM table 3
INSERT INTO table 4 (g, h) VALUES (3,4)
SELECT i FROM table 4 ODER BY a ASC LIMIT 20
DELETE FROM table 4 WHERE j < 5
// Loop End
Is there a possibility to have 4 prepared Statements?
Untill now I didn't use prepared statements. I only use "Execute SQL.vi" and I made my statement before that step with string functions (format into string). But "Execute SQL.vi" is slow, so I'd like to optimize it.
Regards
Matze