<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Overview</title><link>https://sourceforge.net/p/object-oriented-database/wiki/Overview/</link><description>Recent changes to Overview</description><atom:link href="https://sourceforge.net/p/object-oriented-database/wiki/Overview/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 19 Feb 2026 00:15:35 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/object-oriented-database/wiki/Overview/feed" rel="self" type="application/rss+xml"/><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -26,7 +26,11 @@

 OODB supports data structures and nested objects. A user who has some experience in PowerShell, Matlab or any object-oriented language should find OODB easy to work with. OODB can be either used merely as file or as "listening" service (a.k.a. database management system). Check the supported data types here: [Data types]

-Below the main parts/modules of OODB are shown. OODB is the database "as file". OODBC (object-oriented database control) is the listening service which parses requests and sends responses to database users. It takes care of thread safety, defragmentation, creation of back-ups and user access groups. OODBI (object-oriented database interface) is the client's API.
+Below the main parts/modules of OODB are shown:
+* **OODB** is the database "as file".
+* **OODBC** (object-oriented database control) is the listening service (server) which parses requests and sends responses to database users. It takes care of thread safety, defragmentation, creation of back-ups and user access groups. 
+* **OODBI** (object-oriented database interface) is the client side.
+![](https://i.ibb.co/B5V1MSXc/OODB.png)


 ### Examples of use cases
@@ -37,8 +41,8 @@
 plc1.pressure
 plc1.temperature
 ...
-plc2.pressure
-plc2.temperature
+plc5.pressure
+plc5.temperature
 ~~~
 Since we're in C# code and dealing with simple yet nested data structures, choosing OODB for data accumulation will be natural.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Thu, 19 Feb 2026 00:15:35 -0000</pubDate><guid>https://sourceforge.neta79dea06595d005cb2dbbc627f0df74fe72c43f8</guid></item><item><title>Overview modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/Overview/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 18:06:04 -0000</pubDate><guid>https://sourceforge.net97404388af2768e0cf3a58142e199e925c14beb9</guid></item><item><title>Overview1 modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/Overview1/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 18:05:17 -0000</pubDate><guid>https://sourceforge.net1bc2e05465ad5226ffbfd5c20c5596cfc21ac0d1</guid></item><item><title>Home modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,8 +1,56 @@
-1. Overview
-2. Licensing [Licensing]
-3. OODB as file
-4. OODBC - OODB as service
-5. OODBI
-6. Mapping of methods
-7. System requirements
-8. FileIO [FileIO]
+#### Overview
+
+OODB (object-oriented database) has been developed for the following use cases:
+* Client-server enterprise software written in C#.
+* Mobile applications written in C# (Xamarin) that must either read/write data in remote database or keep a local database on device.
+* Interactive work and scripting.
+
+Both in "file" and in "listening service" modes the database is accessed either from source code (C#) or via PowerShell.
+Code sample for C#:
+~~~
+int16List = new List&amp;lt;int16&amp;gt;();
+int16List.Add(Int16.MinValue);
+...
+int16List.Add(Int16.MaxValue); 
+dbi = new OODBI.OODBI(dbServerIp);  
+dbi.putList(int16List, myList);
+~~~
+Code sample for PShell:
+~~~
+[Int16[]]$int16arr = @(1, 2, 3)
+$dbi = (new-object OODBI.OODBI($dbServerIp))
+$dbi.putArray($int16arr, [string]"myArr")
+~~~
+
+
+
+OODB supports data structures and nested objects. A user who has some experience in PowerShell, Matlab or any object-oriented language should find OODB easy to work with. OODB can be either used merely as file or as "listening" service (a.k.a. database management system). Check the supported data types here: [Data types]
+
+Below the main parts/modules of OODB are shown. OODB is the database "as file". OODBC (object-oriented database control) is the listening service which parses requests and sends responses to database users. It takes care of thread safety, defragmentation, creation of back-ups and user access groups. OODBI (object-oriented database interface) is the client's API.
+
+
+### Examples of use cases
+
+**Enterprise software in C#**
+Suppose there is a custom SCADA software collecting and visulalizing industrial process data. Today such software will be likely developed in Java or C#. The data from PLC registers can have a structure like this:
+~~~
+plc1.pressure
+plc1.temperature
+...
+plc2.pressure
+plc2.temperature
+~~~
+Since we're in C# code and dealing with simple yet nested data structures, choosing OODB for data accumulation will be natural.
+
+**Mobile (Xamarin) app**
+Suppose it's a mobile client for company's inventory software. The specialist using the app must check some of the company's assets (equipment, cars, etc.). Nested data structures and their lists come into play such as:
+~~~
+car.id
+car.model
+car.engine
+...
+car.engine.volume
+car.engine.power
+...
+~~~
+These data not only have to be read/written from/to the company's database but probably a local copy of the data must be kept as well. There can hardly be any other software that can make things easier than OODB.
&amp;lt;/int16&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 18:05:03 -0000</pubDate><guid>https://sourceforge.nete0a11f607592d537f25b233b0fbab08502de55a1</guid></item><item><title>Home modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,6 +1,6 @@

 1. Overview
 2. Licensing [Licensing]
-3. OODB as file [OODB as file]
+3. OODB as file
 4. OODBC - OODB as service
 5. OODBI
 6. Mapping of methods
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 18:03:51 -0000</pubDate><guid>https://sourceforge.net8eae6aea86105c004609e3ce1a79312d207ddda6</guid></item><item><title>List of contents modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/List%2520of%2520contents/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,6 +1,6 @@

 1. Overview
 2. Licensing [Licensing]
-3. OODB as file
+3. OODB as file [OODB as file]
 4. OODBC - OODB as service
 5. OODBI
 6. Mapping of methods
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 16:23:44 -0000</pubDate><guid>https://sourceforge.netc85bc2916865939fe84ad591cc5fabbd46fe1ba7</guid></item><item><title>List of contents modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/List%2520of%2520contents/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,5 +1,5 @@

 1. Overview
-2. Licensing
+2. Licensing [Licensing]
 3. OODB as file
 4. OODBC - OODB as service
 5. OODBI
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 15:22:57 -0000</pubDate><guid>https://sourceforge.net70523eb006f5177a63dda2d10797ebdc0e7d0aa0</guid></item><item><title>List of contents modified by ENGITEX</title><link>https://sourceforge.net/p/object-oriented-database/wiki/List%2520of%2520contents/</link><description>&lt;div class="markdown_content"&gt;&lt;ol&gt;
&lt;li&gt;Overview&lt;/li&gt;
&lt;li&gt;Licensing&lt;/li&gt;
&lt;li&gt;OODB as file&lt;/li&gt;
&lt;li&gt;OODBC - OODB as service&lt;/li&gt;
&lt;li&gt;OODBI&lt;/li&gt;
&lt;li&gt;Mapping of methods&lt;/li&gt;
&lt;li&gt;System requirements&lt;/li&gt;
&lt;li&gt;FileIO &lt;a class="alink" href="/p/object-oriented-database/wiki/FileIO/"&gt;[FileIO]&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ENGITEX</dc:creator><pubDate>Wed, 18 Feb 2026 14:21:06 -0000</pubDate><guid>https://sourceforge.netf04f5ed19504d6c22993ceb05a7c0f868d3cf3c0</guid></item></channel></rss>