Hey all, I need to connect to my SQL server, and create some temporary tables. I need to be able to access these tables throughout the application, so where should I connect to the SQL server, and create these temp tables so that they are available throughout the application?
I have several stored procedures, all of which need to be able to use the same temp tables - so i can't create a new sqlconnection for each stored proc, so how do I create the connection/temp tables so they're available to all forms within my application?
I'm kind of a newbie here, so any examples would be awesome.
I have several stored procedures, all of which need to be able to use the same temp tables - so i can't create a new sqlconnection for each stored proc, so how do I create the connection/temp tables so they're available to all forms within my application?
I'm kind of a newbie here, so any examples would be awesome.