It is safe to skip calling SAConnection::Disconnect method explicitly. Destructor SAConnection::~SAConnection will correctly close the connection if you didn't call SAConnection::Disconnect method before. Need Help? Send an e-mail to support@sqlapi.com if you want to ask code-level questions,...
It is safe to use PreFetchRows option for any DBMS. If DBMS does not support bulk row fetching then this option will be ignored. SACommand cmd(&con); cmd.setCommandText(_TSA("Select * from TEST_BULK")); // this instructs the library to allocate a buffer for 100 rows // and, ...
Is it possible to get the memory usage for all the Dll's associated with the specified process using c++? Is it possible to wait until the main window of the process has been constructed? Is it possible to write data to a text file using "fwrite" function in C Is it safe to delete...
SQLAPI++ is C++ library for accessing SQL databases (Oracle, SQL Server, Sybase, DB2, InterBase, SQLBase, Informix, MySQL, Postgre, ODBC, SQLite, SQL Anywhere). It provides unified API for accessing different database while also allowing access to nativ
SA_USE_PTHREAD - build thread safe library (with pthread library, Linux/Unix only) SA_DISABLE_ATOMIC_HEADER - Disable <atomic> header using for the thread safe SAString data (Linux/Unix only, <atomic> used with C++11 and above). SA_USE_PTHREAD_FOR_ATOMIC - Use SAMutex (pthread based)...