本文整理汇总了C++中DatabasePtr::getConnectionInfoString方法的典型用法代码示例。如果您正苦于以下问题:C++ DatabasePtr::getConnectionInfoString方法的具体用法?C++ DatabasePtr::getConnectionInfoString怎么用?C++ DatabasePtr::getConnectionInfoString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DatabasePtr
的用法示例。
在下文中一共展示了DatabasePtr::getConnectionInfoString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: BaseFrame
//! MetadataItemPropertiesFrame class
MetadataItemPropertiesFrame::MetadataItemPropertiesFrame(wxWindow* parent,
MetadataItem* object)
: BaseFrame(parent, wxID_ANY, wxEmptyString)
{
// we need to store this right now, since we might lose the object later
setStorageName(object);
wxStatusBar* sb = CreateStatusBar();
DatabasePtr db = object->getDatabase();
if (db) // server property page doesn't have a database, so don't crash
sb->SetStatusText(db->getConnectionInfoString());
else
sb->SetStatusText(object->getName_());
if (db && config().get("linksOpenInTabs", true))
{
SetIcon(wxArtProvider::GetIcon(ART_DatabaseConnected,
wxART_FRAME_ICON));
databaseNameM = db->getName_();
}
else // when linksOpenInTabs, only the server node
{
SetIcon(getMetadataItemIcon(object->getType()));
}
notebookM = new wxAuiNotebook(this, wxID_ANY, wxDefaultPosition,
wxDefaultSize, wxAUI_NB_DEFAULT_STYLE | wxAUI_NB_WINDOWLIST_BUTTON
| wxAUI_NB_TAB_EXTERNAL_MOVE | wxNO_BORDER);
auiManagerM.SetManagedWindow(this);
auiManagerM.AddPane(notebookM,
wxAuiPaneInfo().CenterPane().PaneBorder(false));
auiManagerM.Update();
Connect(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, wxAuiNotebookEventHandler(
MetadataItemPropertiesFrame::OnNotebookPageClose), NULL, this);
Connect(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, wxAuiNotebookEventHandler(
MetadataItemPropertiesFrame::OnNotebookPageChanged), NULL, this);
}