Questions tagged [odb]

ODB is an open-source, cross-platform, and cross-database object-relational mapping (ORM) system for C++.

ODB is an open-source, cross-platform, and cross-database object-relational mapping (ORM) system for C++. It allows you to persist C++ objects to a relational database without having to deal with tables, columns, or SQL and without manually writing any mapping code. ODB supports MySQL, SQLite, PostgreSQL, Oracle, and Microsoft SQL Server relational databases as well as C++98/03 and C++11 language standards. It also comes with optional profiles for Boost and Qt which allow you to seamlessly use value types, containers, and smart pointers from these libraries in your persistent C++ classes.

82 questions
0
votes
1 answer

How to update nodal value of Abaqus odb file using python script?

I want to update nodal values of an existing Abaqus odb file using python script. I already have new nodal valued, but don't how to put them into odb file instead of previous data.
Siamak Malek
  • 45
  • 2
  • 11
0
votes
1 answer

ODB Relationship fails to compile

I have a very simple relationship setup which I cannot get the odb output to compile and it's giving me the below compiler error. I am using Qt smart pointers to implement the relationship and I always seem to be running into the same error no…
Brian
  • 951
  • 2
  • 10
  • 20
-1
votes
1 answer

Oracle DB / ODI / OBIEE installation on Google cloud platform

I'm going to set up some machines, over cloud.google.com, and install Oracle Database, Oracle Data integrator, and also Oracle Business Intelligence on these machines. As I don't have any experience in installing these services on google cloud, I…
-1
votes
1 answer

Trying to get data from an odb databes in Java

ResultSet rs = sql.executeQuery ("SELECT HP FROM PKMN WHERE (ID == basicnumber)"); That is the code I want to use, but I have a mistake I do not see... Explanation: I am accessing my .odb Database from Java. I want a user to…
Eveli
  • 498
  • 1
  • 6
  • 27
-1
votes
1 answer

MariaDB 10.1 and ODB from codesynthesis

Currently, I am working with ODB from codesynthesis and MySQL (Oracle) databases. I want to switch to MariaDB. Is ODB from codesynthesis working with the latest version of MariaDB (10.1) or do I have to install the 5.5.45 version?
Porsche9II
  • 629
  • 5
  • 17
-2
votes
1 answer

Connect to running MySQL database

Is it possible to connect to a running MySQL database with odb from codesynthesis and get read access to already existing tables? In detail: I want to connect to the following database that already has some tables. Database Name: MyDB User:…
Porsche9II
  • 629
  • 5
  • 17
-3
votes
2 answers

Table not found in statement

Class.forName("org.hsqldb.jdbcDriver"); conn = DriverManager.getConnection("jdbc:hsqldb:file:Pokemondaten","sa",""); getData = conn.createStatement(); ResultSet rs = getData.executeQuery ("SELECT HP FROM PKMN WHERE ID = " +…
Eveli
  • 498
  • 1
  • 6
  • 27
1 2 3 4 5
6