Menu

Tree [r381] /
 History

HTTPS access


File Date Author Commit
 conf 2021-05-04 cjullien [r287] Add conf/missing from autoconf
 doc 2021-05-04 cjullien [r289] Update doxygen conf
 include 2023-02-14 cjullien [r379] Compile using C++20 on Windows
 lib 2016-11-24 cjullien [r49] Fix pgsql compilation, improve build chain.
 m4 2023-02-21 cjullien [r380] Update m4
 samples 2021-05-23 cjullien [r373] getResultSet returns the DBResultSet passed as ...
 src 2023-02-21 cjullien [r381] Update m4
 tools 2016-12-17 cjullien [r138] Add few internal tools
 AUTHORS 2016-11-25 cjullien [r56] Script and Makefile cleanup
 COPYING 2021-05-04 cjullien [r288] Update copyright
 Makefile.in 2021-05-19 cjullien [r350] Make empty definition of CrtLeaks for non-Windo...
 README 2021-05-04 cjullien [r284] Change Copyright end date to 2021
 autogen.sh 2020-05-14 cjullien [r224] Fix sqlite3 detection
 configure 2023-02-21 cjullien [r381] Update m4
 configure.ac 2021-05-22 cjullien [r369] Move to version 0.6.0, better support Excel wit...
 dbsql++.pc.in 2017-01-03 cjullien [r185] Add .spec and .pc
 dbsql++.spec.in 2017-01-04 cjullien [r188] ODBC Cleanup
 makefile.msvc 2023-02-21 cjullien [r380] Update m4
 mysql.mak 2021-05-26 cjullien [r376] Add MariaDB support on Windows
 odbc.mak 2021-05-22 cjullien [r366] Cache drivers in a list.
 sqlite.mak 2021-05-26 cjullien [r376] Add MariaDB support on Windows

Read Me

Copyright (c) 1992-2021, Eligis
All rights reserved.

The dbsql++ provides basic SQL interface to different SQL engines.

It gives a uniform interface to:
- MySQL/MariaDB
- ODBC
- PostresSQL
- SQLite

DB Qwery can be as simple as:

  for (const auto& row : env.getCursor("SELECT * FROM foo;")) {
    for (const auto& x : row) {
      std::cout << std::setw(8) << x << " -- ";
    }
    std::cout << std::endl;
  }

You can retrieve the source code on sourceforge using:

  svn checkout svn://svn.code.sf.net/p/dbsql-cpp/code/ dbsql-cpp-code
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.