資源簡(jiǎn)介
MyDAC是一個(gè)很好的訪問MySQL的Delphi控件組,性能非常好。
2012年12月份發(fā)布的版本源碼,版本歷史如下:
7.6.11 12-Dec-12
Rad Studio XE3 Update 1 is now required
C++Builder 64-bit for Windows is supported
TMyDumpOptions.FieldsAsString property for dumping all data types as string is added
Bug with using quoted field names in the IndexFie
代碼片段和文件信息
//$$----?EXE?CPP?----
//---------------------------------------------------------------------------
#include?
#pragma?hdrstop
//---------------------------------------------------------------------------
USEFORM(“Main.cpp“?fmMain);
//---------------------------------------------------------------------------
WINAPI?WinMain(HINSTANCE?HINSTANCE?LPSTR?int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfmMain)?&fmMain);
Application->Run();
}
catch?(Exception?&exception)
{
Application->ShowException(&exception);
}
catch?(...)
{
try
{
throw?Exception(““);
}
catch?(Exception?&exception)
{
Application->ShowException(&exception);
}
}
return?0;
}
//---------------------------------------------------------------------------
評(píng)論
共有 條評(píng)論