VC adds data from an Access database table to a ComboBox, implementing the properties of adding a ComboBox from the database

Source: Internet
Author: User

#include ". \.. \common\io\appdirectoryutil.h "
#include ". \.. \common\database\dbconnection.h "
#include ". \.. \common\database\dbcommand.h "
#include ". \.. \common\database\dbdatareader.h "

Static CString getconnectionstring ()
{
CString mdbfilename = cappdirectoryutil::getparentdirectory () + TEXT ("\\biaozhun.mdb");
Return TEXT ("Provider=Microsoft.Jet.OLEDB.4.0;Data source=") + mdbfilename;
}

BOOL Carxellipsoidalhead::oninitdialog ()
{

Cdbconnection con (getconnectionstring ());
Con. Open ();
CString sql = TEXT ("select * from Biaozhun Where ID > 0");
Cdbcommand cmd (sql, &con);
Cdbdatareader *pdr = cmd. ExecuteReader ();
while (Pdr->read ())
{
Long ID = (PDR) [TEXT ("id")]. ToDouble ();
CString Biaozhun = (*PDR) [TEXT ("Biaozhun")]. ToString ();
M_standard. AddString (Pdr->operator [] (TEXT ("Biaozhun"));
M_standard. AddString (Biaozhun);
Dr->movenext ();
CString author = (*DR) [TEXT ("Author")]. ToString ();
CString Press = (*DR) [TEXT ("Press")]. ToString ();
Double price = (*DR) [TEXT ("Price")]. ToDouble ();
acutprintf (TEXT ("\nid:%d, biaozhun:%s"), Id,biaozhun);
}
Pdr->close ();
Con. Close ();

VC adds data from an Access database table to a ComboBox, implementing the properties of adding a ComboBox from the database

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.