src/SqlException.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 25 May 2020 21:11:17 +0200
branchv_0
changeset 35 cd9db43db120
parent 10 7da7173d84b0
child 36 91cb012d779a
permissions -rw-r--r--
SqlException: ODBC diagnostics

/**
 * Relational pipes
 * Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 3.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
#pragma once

#include <string>
#include <vector>

namespace relpipe {
namespace tr {
namespace sql {

class SqlException {
public:

	class SqlDiagnosticsRecord {
	public:
		std::wstring sqlState;
		int sqlCode;
		std::wstring message;
	};

private:
	std::wstring message;
	std::vector<SqlDiagnosticsRecord> diagnostics;
	signed short int resultCode;
public:

	SqlException(std::wstring message);

	SqlException(std::wstring message, signed short int resultCode, signed short int handleType, void* handle);

	std::wstring getMessage() const;

	signed short int getResultCode() const;

	std::vector<SqlDiagnosticsRecord> getDiagnostics() const;

};

}
}
}