Dec 9, 2005 #1 bxgirl Programmer Nov 21, 2005 75 US Can I do this in VB6 using mySQL 4? create temporary table within VB using conn.Execute then joining the temp table to a permanent table.
Can I do this in VB6 using mySQL 4? create temporary table within VB using conn.Execute then joining the temp table to a permanent table.
Dec 9, 2005 #2 HermanvLimbeek Programmer Apr 9, 2001 209 NL You could use a "Create Table" query to create the table and then a "Insert Into" to fill the permanent table. Then drop the temporary table. Upvote 0 Downvote
You could use a "Create Table" query to create the table and then a "Insert Into" to fill the permanent table. Then drop the temporary table.
Dec 9, 2005 Thread starter #3 bxgirl Programmer Nov 21, 2005 75 US Thank you. create table actually creates a table but what about create temporary table...will that work? Upvote 0 Downvote
Thank you. create table actually creates a table but what about create temporary table...will that work?
Dec 10, 2005 #4 HermanvLimbeek Programmer Apr 9, 2001 209 NL Well, I never tried it but it should be possible. See http://dev.mysql.com/doc/refman/4.1/en/temporary-table-problems.html for more information. Upvote 0 Downvote
Well, I never tried it but it should be possible. See http://dev.mysql.com/doc/refman/4.1/en/temporary-table-problems.html for more information.
Dec 10, 2005 Thread starter #5 bxgirl Programmer Nov 21, 2005 75 US I'll have to try it. Thanks for the link. Upvote 0 Downvote