Search results

  1. B

    Hi - retired developer looking for some specific details on embedded sql

    My last message was erroneous. Here's my solution: public: List<String^>^ GetCustomers() { List<String^>^ customerList = gcnew List<String^>(); try { String^ sql = L"SELECT CustomerName FROM Customer"; String^ customer; OdbcCommand^ cmd = gcnew OdbcCommand(); cmd->CommandText = sql...
  2. B

    Hi - retired developer looking for some specific details on embedded sql

    It took me a whole a day of searching but I finally found the key: System::Data::DataSet^ ds = gcnew System::Data::DataSet(); I can make it from here. Thanks again.
  3. B

    Hi - retired developer looking for some specific details on embedded sql

    I appreciate the quick reply. Now I need to see what that means to me in C++/CLI. Thank you.
  4. B

    Hi - retired developer looking for some specific details on embedded sql

    All i want to do (right now) is to find the 1st record in a table, grab some data, then go to the next & do the same - for all records.
Back
Top Bottom