1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/***********************************************************************
mfc_dlg.cpp - Defines the dialog box behavior for the MySQL++ MFC
example.
Copyright (c) 2007 by Educational Technology Resources, Inc. Others
may also hold copyrights on code in this file. See the CREDITS.txt
file in the top directory of the distribution for details.
This file is part of MySQL++.
MySQL++ is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
MySQL++ is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with MySQL++; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
USA
***********************************************************************/
#include "stdafx.h"
#include "mfc_dlg.h"
#include <mysql++.h>
BEGIN_MESSAGE_MAP(CExampleDlg, CDialog)
ON_BN_CLICKED(IDC_CONNECT_BUTTON, &CExampleDlg::OnBnClickedConnectButton)
END_MESSAGE_MAP()
//// ctor //////////////////////////////////////////////////////////////
CExampleDlg::CExampleDlg(CWnd* pParent) :
CDialog(IDD_MFC_DIALOG, pParent)
{
LoadDefaults();
}
//// AddMessage ////////////////////////////////////////////////////////
// Inserts the given string at the end of the list box we're using for
// output to the user.
void
CExampleDlg::AddMessage(LPCTSTR pcMessage)
{
ResultsList.InsertString(-1, pcMessage);
}
//// DoDataExchange ////////////////////////////////////////////////////
// Transfer data from the controls into our member variables
void
CExampleDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_SERVER_EDIT, sServerAddress);
DDX_Text(pDX, IDC_USER_EDIT, sUserName);
DDX_Text(pDX, IDC_PASSWORD_EDIT, sPassword);
DDX_Control(pDX, IDC_RESULTS_LIST, ResultsList);
}
//// LoadDefaults //////////////////////////////////////////////////////
// Load default input values from registry, if they exist.
void
CExampleDlg::LoadDefaults()
{
HKEY key = OpenSettingsRegistryKey();
if (key) {
TCHAR acSetting[100];
if (LoadSetting(key, _T("user"), acSetting, sizeof(acSetting))) {
sUserName = acSetting;
}
if (LoadSetting(key, _T("server"), acSetting, sizeof(acSetting))) {
sServerAddress = acSetting;
}
RegCloseKey(key);
}
if (sUserName.IsEmpty()) {
TCHAR acUserName[100];
DWORD nBufferSize = sizeof(acUserName);
if (GetUserName(acUserName, &nBufferSize)) {
sUserName = acUserName;
}
}
if (sServerAddress.IsEmpty()) {
sServerAddress = _T("localhost");
}
}
//// LoadSetting ///////////////////////////////////////////////////////
// Loads up the value of the named registry value underneath the given
// key and returns it in pcValue.
bool
CExampleDlg::LoadSetting(HKEY key, LPCTSTR pcName, LPTSTR pcValue,
DWORD nValueSize)
{
return RegQueryValueEx(key, pcName, 0, 0, LPBYTE(pcValue),
&nValueSize) == ERROR_SUCCESS;
}
//// OnBnClickedConnectButton //////////////////////////////////////////
// This is essentially the same thing as examples/simple1.cpp
void
CExampleDlg::OnBnClickedConnectButton()
{
WCHAR awcTempBuf[100];
const int kTempBufSize = sizeof(awcTempBuf) / sizeof(awcTempBuf[0]);
// Pull user input into our member variables
UpdateData(TRUE);
// Clear out the results list, in case this isn't the first time
// we've come in here.
ResultsList.ResetContent();
// Translate the Unicode text we get from the UI into the UTF-8 form
// that MySQL wants.
const int kInputBufSize = 100;
char acServerAddress[kInputBufSize];
char acUserName[kInputBufSize];
char acPassword[kInputBufSize];
ToUTF8(acServerAddress, kInputBufSize, sServerAddress);
ToUTF8(acUserName, kInputBufSize, sUserName);
ToUTF8(acPassword, kInputBufSize, sPassword);
// Connect to the sample database.
mysqlpp::Connection con(false);
if (!con.connect("mysql_cpp_data", acServerAddress, acUserName,
acPassword)) {
AddMessage(_T("Failed to connect to server:"));
if (ToUCS2(awcTempBuf, kTempBufSize, con.error())) {
AddMessage(awcTempBuf);
}
return;
}
// Retrieve a subset of the sample stock table set up by resetdb
mysqlpp::Query query = con.query();
query << "select item from stock";
mysqlpp::StoreQueryResult res = query.store();
if (res) {
// Display the result set
for (size_t i = 0; i < res.num_rows(); ++i) {
if (ToUCS2(awcTempBuf, kTempBufSize, res[i][0])) {
AddMessage(awcTempBuf);
}
}
// Retreive was successful, so save user inputs now
SaveInputs();
}
else {
// Retreive failed
AddMessage(_T("Failed to get item list:"));
if (ToUCS2(awcTempBuf, kTempBufSize, query.error())) {
AddMessage(awcTempBuf);
}
}
}
//// OpenSettingsRegistryKey ///////////////////////////////////////////
HKEY
CExampleDlg::OpenSettingsRegistryKey()
{
HKEY key1, key2;
if ((RegOpenKey(HKEY_CURRENT_USER, _T("Software"), &key1) ==
ERROR_SUCCESS) && (RegCreateKey(key1,
_T("MySQL++ Examples"), &key2) == ERROR_SUCCESS)) {
RegCloseKey(key1);
return key2;
}
else {
return 0;
}
}
//// SaveInputs ////////////////////////////////////////////////////////
// Saves the input fields' values to the registry, except for the
// password field.
bool
CExampleDlg::SaveInputs()
{
HKEY key = OpenSettingsRegistryKey();
if (key) {
SaveSetting(key, _T("user"), sUserName);
SaveSetting(key, _T("server"), sServerAddress);
RegCloseKey(key);
return true;
}
else {
return false;
}
}
//// SaveSetting ///////////////////////////////////////////////////////
// Saves the given value as a named entry under the given registry key.
bool
CExampleDlg::SaveSetting(HKEY key, LPCTSTR pcName, LPCTSTR pcValue)
{
DWORD nBytes = DWORD(sizeof(TCHAR) * (_tcslen(pcValue) + 1));
return RegSetValueEx(key, pcName, 0, REG_SZ, LPBYTE(pcValue),
nBytes) == ERROR_SUCCESS;
}
//// ToUCS2 ////////////////////////////////////////////////////////////
// Convert a C string in UTF-8 format to UCS-2 format.
bool
CExampleDlg::ToUCS2(LPTSTR pcOut, int nOutLen, const char* kpcIn)
{
if (strlen(kpcIn) > 0) {
// Do the conversion normally
return MultiByteToWideChar(CP_UTF8, 0, kpcIn, -1, pcOut,
nOutLen) > 0;
}
else if (nOutLen > 1) {
// Can't distinguish no bytes copied from an error, so handle
// an empty input string as a special case.
_tccpy(pcOut, _T(""));
return true;
}
else {
// Not enough room to do anything!
return false;
}
}
//// ToUTF8 ////////////////////////////////////////////////////////////
// Convert a UCS-2 multibyte string to the UTF-8 format required by
// MySQL, and thus MySQL++.
bool
CExampleDlg::ToUTF8(char* pcOut, int nOutLen, LPCWSTR kpcIn)
{
if (_tcslen(kpcIn) > 0) {
// Do the conversion normally
return WideCharToMultiByte(CP_UTF8, 0, kpcIn, -1, pcOut,
nOutLen, 0, 0) > 0;
}
else if (nOutLen > 0) {
// Can't distinguish no bytes copied from an error, so handle
// an empty input string as a special case.
*pcOut = '\0';
return true;
}
else {
// Not enough room to do anything!
return false;
}
}
|