📄 error.c
字号:
// Copyright (c) 1999-2001 David Muse// See the file COPYING for more information#include <sqlrelay/sqlrclient.h>void sqlrconnection::clearError() { delete[] error; error=NULL;}void sqlrconnection::setError(const char *err) { if (debug) { debugPreStart(); debugPrint("Setting Error\n"); debugPreEnd(); } error=charstring::duplicate(err); if (debug) { debugPreStart(); debugPrint(error); debugPrint("\n"); debugPreEnd(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -