|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Yes, Scott, you can also interact directly with the database through the ExecuteNonQuery methods on the business objects. You can create a new temp table by passing the CREATE command through the ExecuteNonQuery of a business object. Then you will use the business object whose structure matches that of the temp table to interact with the temporary table. When you're done with the temp table, you can pass your DROP command through the ExecuteNonQuery method as well.
|