mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
C++ library which allows rapid development of database applications. Note: hk_classes works with mysql, postgresql und ODBC, but this port only supports mysql at the moment. Prodded by: enoal <sreco@xmission.com> PR: 41380
11 lines
410 B
C++
11 lines
410 B
C++
--- hk_classes/hk_drivermanager.cpp.orig Fri Oct 31 12:14:16 2003
|
|
+++ hk_classes/hk_drivermanager.cpp Fri Oct 31 12:14:25 2003
|
|
@@ -141,7 +141,7 @@
|
|
{
|
|
if (interactive)
|
|
{
|
|
- char* e=dlerror();
|
|
+ const char* e=dlerror();
|
|
hk_string error=hk_translate("Unknown reason");
|
|
if (e) error=e;
|
|
hk_string w=hk_translate("Database driver '%DRIVER%' could not be loaded.\nReason: ")+error;
|