29. august 2007 - 21:18Der er
10 kommentarer og 1 løsning
Visual C++ 2005 og SQL
Hej
Meget simpelt. Jeg skal lave en C++ application hvor der findes en "kør" knap og et output felt. Når der trykkes på "kør" skal der køres en SQL query imod en Access database. Resultatet skal vises i Output feltet. For nemhedens skyld skal SQL blot returnerer alt (SELECT *)
C++ delen kan jeg nemt skabe, men jeg er usikker på SQL delen.
1. Hvordan griber jeg dette an? 2. Skal der åbnes via ODBC? 3. Hvordan skal query programkoden se ud i C++ koden?
using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing;
/// <summary> /// Summary for Form1 /// /// WARNING: If you change the name of this class, you will need to change the /// 'Resource File Name' property for the managed resource compiler tool /// associated with all .resx files this class depends on. Otherwise, /// the designers will not be able to interact properly with localized /// resources associated with this form. /// </summary> public ref class Form1 : public System::Windows::Forms::Form { public: Form1(void) { InitializeComponent(); // //TODO: Add the constructor code here // }
protected: /// <summary> /// Clean up any resources being used. /// </summary> ~Form1() { if (components) { delete components; } } private: System::Windows::Forms::Button^ button1; protected: private: System::Windows::Forms::Label^ label1; private: System::Windows::Forms::TextBox^ textBox1;
Kan du anbefale et andet sporg som er nemmere at gå til? Det primære er at jeg skal udvikle en windows aplikation som skal lave forespørgseler i en Access database.
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.