1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/anyline-anyline

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
Внести вклад в разработку кода
Синхронизировать код
Отмена
Подсказка: Поскольку Git не поддерживает пустые директории, создание директории приведёт к созданию пустого файла .keep.
Loading...
README.md

Документ на английском Китайская версия документа

Динамически регистрируйте и переключайте источники данных во время выполнения, автоматически генерируйте SQL (DDL/DML/DQL), читайте и записывайте метаданные, а также сравнивайте различия в структуре баз данных. Поддерживает более 100 реляционных и нереляционных баз данных. Часто используется для низкоуровневой поддержки в динамических сценариях, таких как среда для работы с данными, визуализация, низкое кодирование серверной части, рабочие процессы, пользовательские формы, миграция и синхронизация между разнотипными базами данных, обработка данных Интернета вещей, очистка данных, создание пользовательских отчетов/условий запросов/структур данных во время выполнения, парсинг данных насекомых и т. д.

Быстрый тест см.【anyline-simple-clear】
***Синтаксис см.【anyline-simple】***любые вопросы, пожалуйста, свяжитесь со Skype: server@anyline.org

QQ группа (86020680) Мобильная группа WeChat Устаревшая информация, обратитесь к администратору
независимо от ошибок, сомнений, требований, исходного кода, конкурентов
## Введение Основой AnyLine является динамическое картографирование метаданных, ориентированное на выполнение времени, что主要用于 - Динамическая регистрация и переключение источников данных - Чтение и запись метаданных - Сравнение различий в структуре баз данных - Генерация динамического SQL и объединение условий динамического запроса - Комплексные операции над множествами результатовНатуральное низкоуровневое средство для создания динамических форм и динамических источников данных. Адаптация к различным реляционным и нереляционным базам данных (а также к специализированным отраслевым базам данных). Часто используется для низкоуровневой поддержки в динамических сценариях структур, выступая в роли движка парсинга SQL или адаптера. Например: центры обработки данных, визуализация, низкоуровневое программирование, облачные сервисы (SaaS), создание пользовательских форм, миграция и синхронизация гетерогенных баз данных, обработка данных Интернета вещей. Условия/структуры данных, парсинг данных скраперами и т. д. Ссылка [[Применимые сценарии](http://doc.anyline.org/ss/ed_14)]
Регистрация и смена источника данных

Обратите внимание, что источник данных здесь не представляет собой отношение мастер-слейв, а несколько совершенно независимых источников данных.

DataSource ds_sso = new DruidDataSource();
ds_sso.setUrl("jdbc:mysql://localhost:3306/sso");
ds_sso.setDriverClassName("com.mysql.cj.jdbc.Driver");

...

DataSourceHolder.reg("ds_sso", ds_sso);

OR  

DataSourceHolder.reg("ds_sso", pool, driver, url, user, password);
DataSourceHolder.reg("ds_sso", Map<String, Object> params); // Соответствующие свойства пула соединений k-v
```//Запрос таблицы SSO_USER источника данных ds_sso
DataSet set = ServiceProxy.service("ds_sso").querys("SSO_USER");

Из статического файла конфигурации источника данных (если это среда Spring, она может быть в формате Spring)

#Основной источник данных
anyline.datasource.type=com.zaxxer.hikari.HikariDataSource
anyline.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
anyline.datasource.url=jdbc:mysql://localhost:33306/simple
anyline.datasource.user-name=root
... более параметров
#Другие источники данных
anyline.datasource-list=crm,erp,sso,mg

anyline.datasource.crm.driver-class-name=com.mysql.cj.jdbc.Driver
anyline.datasource.crm.url=jdbc:mysql://localhost:33306/simple_crm
anyline.datasource.crm.username=root

anyline.datasource.erp.driver-class-name=com.mysql.cj.jdbc.Driver
anyline.datasource.erp.url=jdbc:mysql://localhost:33306/simple_erp
anyline.datasource.erp.username=root

DML

//Если это веб-среда
service.querys("SSO_USER",
   condition(true, "NAME:%name%", "TYPE:[type]", "[CODES]:code"));
//true указывает на необходимость пагинации, и условия без значений параметров игнорируются по умолчанию
//SQL:
SELECT *
FROM SSO_USER
WHERE 1=1
AND NAME LIKE '%?%'
AND TYPE IN (?, ?, ?)
AND FIND_IN_SET(?, CODES)
LIMIT 5, 10 //Генерирует различные SQL-запросы в зависимости от конкретного типа базы данных
```//Пользовательские условия запроса, в сценариях с минимальным кодированием обычно требуются более сложные условия запроса
ConfigStore configs;
service.query("SSO_USER", configs);
//ConfigStore предоставляет все операции SQL
//Пример кода и инструкции по параметрам SQL для нескольких таблиц, групповой отправки, пользовательских SQL и парсинга XML-определений

Чтение и запись метаданных

@Autowired("anyline.service")
AnylineService service;
```//Запрос структуры таблицы SSO_USER по умолчанию источника данных
Table table = service.metadata().table("SSO_USER");
LinkedHashMap<String, Column> columns = table.getColumns();                 //столбцы таблицы
LinkedHashMap<String, Constraint> constraints = table.getConstraints();     //ограничения таблицы
List<String> ddls = table.getDdls();                                        //DML для создания таблицы// удаление таблицы и её восстановление
service.ddl().drop(table);
table = new Table("SSO_USER");

// Тип данных здесь произвольный, независимо от того, является ли это int8 или bigint, он будет преобразован в правильный тип во время выполнения
table.addColumn("ID", "BIGINT").autoIncrement(true).setPrimary(true).setComment("первичный ключ");
table.addColumn("CODE", "VARCHAR(20)").setComment("код пользователя");
table.addColumn("NAME", "VARCHAR(20)").setComment("полное имя");
table.addColumn("AGE", "INT").setComment("возраст пользователя");
service.ddl().create(table);// или service.ddl().save(table);  // При выполнении будет различаться, какие столбцы требуются для добавления, а какие — для изменения

Транзакции базы данных

// Из-за того что метод может несколько раз менять источник данных в любое время, аннотация больше не может захватывать текущий источник данных
// Больше параметров транзакций можно получить через параметр TransactionDefine
TransactionState state = TransactionProxy.start("ds_sso");
// Операции с данными (вставка, обновление, удаление)
TransactionProxy.commit(state);
TransactionProxy.rollback(state);

MySQLMySQL PostgreSQLPostgreSQL OracleOracle MSSQLMSSQL MongoDBMongoDB RedisRedis ElasticsearchElasticsearchDB2DB2 DMDM(Компания Шэньчжэнь Дафэн Информационные Технологии) GBase8aGBase8a(Компания Tianjin NanDa General Data Technology) GBase8cGBase8c(Компания Tianjin NanDa General Data Technology) GBase8cGBase8c(Компания Тяньцзинь Нандао Туньюй Шугуан Цзюйси Чжэнши Гуофучжэнь) GBase8sGBase8s(Компания Тяньцзинь Нандао Туньюй Шугуан Цзюйси Чжэнши Гуофучжэнь) oscarOscar SQLiteSQLite SnowflakeSnowflakeCassandraCassandra MariaDBMariaDB SplunkSplunk AzureSQLAzureSQL AmazonDynamoDBAmazonDynamoDB DatabricksDatabricks HiveHive AccessAccess GoogleBigQueryGoogleBigQuery HighGoHighGo (компания Ханго) MSSQL2000MSSQL2000Neo4jNeo4j PolarDBPolarDB (Alibaba Cloud Inc.) SybaseSybase TeraDataTeraData FileMakerFileMaker HANAHANA SolrSolr Adaptive Server Enterprise Адаптивный HBaseHBase Azure Cosmos DBAzure Cosmos DB InfluxDBInfluxDBPostGISPostGIS Azure Synapse AnalyticsAzure Synapse Analytics FirebirdFirebird CouchbaseCouchbase Amazon RedshiftAmazon Redshift InformixInformix MemcachedMemcached Apache SparkApache Spark ClouderaCloudera FirebaseFirebase ClickHouseClickHouse PrestoDB```markdown PrestoPresto VerticaVertica dbasedbase NetezzaNetezza OpenSearchOpenSearch FlinkFlink CouchDBCouchDB Google FirestoreGoogle Firestore GreenplumGreenplum Amazon AuroraAmazon Aurora WebP WebP H2 H2 Kdb Kdb


Внесены изменения в текстовых описаниях и ссылках, чтобы они были корректными и соответствовали правилам перевода.<a style="display:inline-block;" href="https://etcd.io/">
 <img alt="etcd" src="https://gitee.com/anyline/service/raw/master/db/etcd.svg" width="100"/>
 etcd
</a>
<a style="display:inline-block;" href="https://realm.io/">
 <img alt="Realm" src="https://gitee.com/anyline/service/raw/master/db/realm.svg" width="100"/>
 Realm
</a>
<a style="display:inline-block;" href="https://www.marklogic.com/">
 <img alt="MarkLogic" src="https://gitee.com/anyline/service/raw/master/db/marklogic.png" width="100"/>
 MarkLogic
</a>
<a style="display:inline-block;" href="https://hazelcast.com/">
 <img alt="Hazelcast" src="https://gitee.com/anyline/service/raw/master/db/hazelcast.svg" width="100"/>
 Hazelcast
</a>
<a style="display:inline-block;" href="https://prometheus.io/">
 <img alt="Prometheus" src="https://gitee.com/anyline/service/raw/master/db/prometheus.svg" width="100"/>
 Prometheus
</a>
<a style="display:inline-block;" href="https://www.oracle.com/business-analytics/essbase.html">
 <img alt="Oracle Essbase" src="https://gitee.com/anyline/service/raw/master/db/oracle.avif" width="100"/>
 Oracle Essbase
</a>
<a style="display:inline-block;" href="https://www.datastax.com/products/datastax-enterprise">
 <img alt="DataStax" src="https://gitee.com/anyline/service/raw/master/db/datastax.svg" width="100"/>
 DataStax
</a>
<a style="display:inline-block;" href="https://aerospike.com/">
 <img alt="Aerospike" src="https://gitee.com/anyline/service/raw/master/db/aerospike.webp" width="100"/>
 Aerospike
</a>
<a style="display:inline-block;" href="https://azure.microsoft.com/services/data-explorer/">
 <img alt="Azure Data Explorer" src="https://gitee.com/anyline/service/raw/master/db/microsoft.png" width="100"/>
 Azure Data Explorer
</a>
<a style="display:inline-block;" href="https://www.algolia.com/">
 <img alt="Algolia" src="https://gitee.com/anyline/service/raw/master/db/algolia-mark-blue.svg" width="100"/>
 Algolia
</a>
<a style="display:inline-block;" href="https://www.ehcache.org/">
 <img alt="Ehcache" src="https://gitee.com/anyline/service/raw/master/db/ehcache.svg" width="100"/>
 Ehcache
</a>
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-derby">
 <img alt="Ehcache" src="https://gitee.com/anyline/service/raw/master/db/ehcache.png" width="100"/>
 Ehcache
</a><a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-derby"><img alt="Derby" src="https://gitee.com/anyline/service/raw/master/db/derby.webp" width="100"/>Дерби</a>
<a style="display:inline-block;" href="https://www.cockroachlabs.com/"><img alt="CockroachDB" src="https://gitee.com/anyline/service/raw/master/db/cockroach.avif" width="100"/>CockroachDB</a>
<a style="display:inline-block;" href="https://www.scylladb.com/"><img alt="ScyllaDB" src="https://gitee.com/anyline/service/raw/master/db/scylladb.svg" width="100"/>ScyllaDB</a>
<a style="display:inline-block;" href="https://azure.microsoft.com/en-us/services/search/"><img alt="AzureSearch" src="https://gitee.com/anyline/service/raw/master/db/microsoft.png" width="100"/>Azure Search</a>
<a style="display:inline-block;" href="https://www.embarcadero.com/products/interbase"><img alt="Interbase" src="https://gitee.com/anyline/service/raw/master/db/embarcadero.webp" width="100"/>InterBase</a>
<a style="display:inline-block;" href="https://azure.microsoft.com/en-us/services/storage/tables/"><img alt="AzureTableStorage" src="https://gitee.com/anyline/service/raw/master/db/microsoft.png" width="100"/>Azure Table Storage</a>
<a style="display:inline-block;" href="http://sphinxsearch.com/"><img alt="Sphinx" src="https://gitee.com/anyline/service/raw/master/db/sphinx.png" width="100"/>Sphinx</a>
<a style="display:inline-block;" href="https://jackrabbit.apache.org/"><img alt="Jackrabbit" src="https://gitee.com/anyline/service/raw/master/db/jackrabbit.gif" width="100"/>Jackrabbit</a>
<a style="display:inline-block;" href="https://trino.io/"><img alt="Trino" src="https://gitee.com/anyline/service/raw/master/db/trino.svg" width="100"/>Trino</a>
<a style="display:inline-block;" href="https://www.singlestore.com/"><img alt="SingleStore" src="https://gitee.com/anyline/service/raw/master/db/singlestore.svg" width="100"/>SingleStore</a>
<a style="display:inline-block;" href="https://www.actian.com/databases/ingres/"><img alt="Ingres" src="https://gitee.com/anyline/service/raw/master/db/ingres.png" width="100"/>Ingres</a>
<a style="display:inline-block;" href="https://virtuoso.openlinksw.com/"><img alt="Virtuoso" src="https://gitee.com/anyline/service/raw/master/db/virtuoso.```markdown
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-timesscale"><img alt="Timescale" src="https://gitee.com/anyline/service/raw/master/db/timescale.svg" width="100"/>Timescale</a>
<a style="display:inline-block;" href="https://cloud.google.com/datastore/"><img alt="Google Datastore" src="https://gitee.com/anyline/service/raw/master/db/googlecloud.webp" width="100"/>Google Datastore</a>
<a style="display:inline-block;" href="https://github.com/graphite-project/graphite-web"><img alt="Graphite" src="https://gitee.com/anyline/service/raw/master/db/graphiteweb.png" width="100"/>Graphite</a>
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-hsqldb"><img alt="HyperSQL" src="https://gitee.com/anyline/service/raw/master/db/hypersql.png" width="100"/>HyperSQL</a>
<a style="display:inline-block;" href="https://www.softwareag.com/en_corporate/platform/adabas-natural.html"><img alt="Adabas" src="https://gitee.com/anyline/service/raw/master/db/softwareag.svg" width="100"/>Adabas</a>
<a style="display:inline-block;" href=""><img alt="Riak KV" src="https://gitee.com/anyline/service/raw/master/db/riak.png" width="100"/>Riak KV</a>
<a style="display:inline-block;" href="https://www.sap.com/products/technology-platform/sybase-iq-big-data-management.html"><img alt="SAP IQ" src="https://gitee.com/anyline/service/raw/master/db/sap.svg" width="100"/>SAP IQ</a>
<a style="display:inline-block;" href="https://www.arangodb.com/"><img alt="ArangoDB" src="https://gitee.com/anyline/service/raw/master/db/arangodb.png" width="100"/>ArangoDB</a>
<a style="display:inline-block;" href="https://jena.apache.org/documentation/tdb/index.html"><img alt="Jena" src="https://gitee.com/anyline/service/raw/master/db/jena.png" width="100"/>Jena</a>
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-ignite"><img alt="Ignite" src="https://gitee.com/anyline/service/raw/master/db/ignite.svg" width="100"/>Ignite</a>
<a style="display:inline-block;" href="https://cloud.google.com/bigtable/"><img alt="Google Bigtable" src="https://gitee.com/anyline/service/raw/master/db/googlecloud.webp" width="100"/>Google Bigtable</a>
<a style="display:inline-block;" href="https://pingcap.com">

Исправленный текст:

<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-timesscale"><img alt="Timescale" src="https://gitee.com/anyline/service/raw/master/db/timescale.svg" width="100"/>Timescale</a>
<a style="display:inline-block;" href="https://cloud.google.com/datastore/"><img alt="Google Datastore" src="https://gitee.com/anyline/service/raw/master/db/googlecloud.webp" width="100"/>Google Datastore</a>
<a style="display:inline-block;" href="https://github.com/graphite-project/graphite-web"><img alt="Graphite" src="https://gitee.com/anyline/service/raw/master/db/graphiteweb.png" width="100"/>Graphite</a>
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-hsqldb"><img alt="HyperSQL" src="https://gitee.com/anyline/service/raw/master/db/hypersql.png" width="100"/>HyperSQL</a>
<a style="display:inline-block;" href="https://www.softwareag.com/en_corporate/platform/adabas-natural.html"><img alt="Adabas" src="https://gitee.com/anyline/service/raw/master/db/softwareag.svg" width="100"/>Adabas</a>
<a style="display:inline-block;" href=""><img alt="Riak KV" src="https://gitee.com/anyline/service/raw/master/db/riak.png" width="100"/>Riak KV</a>
<a style="display:inline-block;" href="https://www.sap.com/products/technology-platform/sybase-iq-big-data-management.html"><img alt="SAP IQ" src="https://gitee.com/anyline/service/raw/master/db/sap.svg" width="100"/>SAP IQ</a>
<a style="display:inline-block;" href="https://www.arangodb.com/"><img alt="ArangoDB" src="https://gitee.com/anyline/service/raw/master/db/arangodb.png" width="100"/>ArangoDB</a>
<a style="display:inline-block;" href="https://jena.apache.org/documentation/tdb/index.html"><img alt="Jena" src="https://gitee.com/anyline/service/raw/master/db/jena.png" width="100"/>Jena</a>
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-ignite"><img alt="Ignite" src="https://gitee.com/anyline/service/raw/master/db/ignite.svg" width="100"/>Ignite</a>
<a style="display:inline-block;" href="https://cloud.google.com/bigtable/"><img alt="Google Bigtable" src="https://gitee.com/anyline/service/raw/master/db/googlecloud.webp" width="100"/>Google Bigtable</a>
<a style="display:inline-block;" href="https://pingcap.com"></a>

Виртуозо
``````markdown
<a style="display:inline-block;" href="https://gitee.com/anyline/service/raw/master/db/tidb.png"><img alt="TiDB" src="https://gitee.com/anyline/service/raw/master/db/tidb.png" width="100"/>TiDB</a>
<a style="display:inline-block;" href="https://accumulo.apache.org/"><img alt="Accumulo" src="https://gitee.com/anyline/service/raw/master/db/accumulo.png" width="100"/>Accumulo</a>
<a style="display:inline-block;" href="https://rocksdb.org/"><img alt="RocksDB" src="https://gitee.com/anyline/service/raw/master/db/rocksdb.svg" width="100"/>RocksDB</a>
<a style="display:inline-block;" href="https://www.oracle.com/database/nosql/technologies/nosql/"><img alt="Oracle NoSQL" src="https://gitee.com/anyline/service/raw/master/db/oracle.avif" width="100"/>Oracle NoSQL</a>
<a style="display:inline-block;" href="https://www.progress.com/openedge"><img alt="OpenEdge" src="https://gitee.com/anyline/service/raw/master/db/progress.ico" width="100"/>OpenEdge</a>
<a style="display:inline-block;" href="https://duckdb.org/"><img alt="DuckDB" src="https://gitee.com/anyline/service/raw/master/db/duckdb.png" width="100"/>DuckDB</a>
<a style="display:inline-block;" href="https://www.dolphindb.com/"><img alt="DolphinDB" src="https://gitee.com/anyline/service/raw/master/db/dolphindb.webp" width="100"/>DolphinDB</a>
<a style="display:inline-block;" href="https://www.vmware.com/products/gemfire.html"><img alt="GemFire" src="https://gitee.com/anyline/service/raw/master/db/vmware.webp" width="100"/>GemFire</a>
<a style="display:inline-block;" href="https://orientdb.org/"><img alt="OrientDB" src="https://gitee.com/anyline/service/raw/master/db/orientdb.png" width="100"/>OrientDB</a>
<a style="display:inline-block;" href="https://cloud.google.com/spanner/"><img alt="Google Spanner" src="https://gitee.com/anyline/service/raw/master/db/googlecloud.webp" width="100"/>Google Spanner</a>
<a style="display:inline-block;" href="https://ravendb.net/"><img alt="RavenDB" src="https://gitee.com/anyline/service/raw/master/db/ravendb.svg" width="100"/>RavenDB</a>
<a style="display:inline-block;" href="https://www.sap.com/products/technology-platform/sql-anywhere.html"><img alt="Anywhere" src="https://gitee.com/anyline/service/raw/master/db/sap.svg" width="100"/>Anywhere</a>
<a style="display:inline-block;" href="https://www.intersystems.com/products/cache/"><img alt="Cache" src="https://gitee.com/anyline/service/raw/master/db/intersystems.svg" width="100"/>Cache</a>
``````markdown
<a style="display:inline-block;" href="https://tidb.io/"><img alt="TiDB" src="https://gitee.com/anyline/service/raw/master/db/tidb.svg" width="100"/>TiDB</a>
<a style="display:inline-block;" href=""><img alt="ChinaMobileDB" src="https://gitee.com/anyline/service/raw/master/db/chinamobiledb.png" width="100"/>ChinaMobileDB</a>
<a style="display:inline-block;" href=""><img alt="ChinaUnicomDB" src="https://gitee.com/anyline/service/raw/master/db/chinaunicomdb.png" width="100"/>ChinaUnicomDB</a>
<a style="display:inline-block;" href="https://www.cloudiip.com/"><img alt="CirroData" src="https://gitee.com/anyline/service/raw/master/db/cloudiip.png" width="100"/>CirroData</a>
<a style="display:inline-block;" href=""><img alt="FusionInsight" src="https://gitee.com/anyline/service/raw/master/db/fusioninsight.png" width="100"/>FusionInsight</a>
<a style="display:inline-block;" href="https://cloud.baidu.com/doc/DRDS/index.html"><img alt="GaiaDB" src="https://gitee.com/anyline/service/raw/master/db/baiduyun.webp" width="100"/>GaiaDB</a>
<a style="display:inline-block;" href="https://support.huaweicloud.com/gaussdb/index.html"><img alt="GaussDB100" src="https://gitee.com/anyline/service/raw/master/db/huawei.svg" width="100"/>GaussDB100</a>
<a style="display:inline-block;" href="https://support.huaweicloud.com/gaussdb/index.html"><img alt="GaussDB200" src="https://gitee.com/anyline/service/raw/master/db/huawei.svg" width="100"/>GaussDB200</a>
<a style="display:inline-block;" href="https://www.zte.com.cn/china/solutions_latest/goldendb.html"><img alt="GoldenDB" src="https://gitee.com/anyline/service/raw/master/db/zte.webp" width="100"/>GoldenDB</a>
<a style="display:inline-block;" href="https://www.greatdb.com/"><img alt="GreatDB" src="https://gitee.com/anyline/service/raw/master/db/greatdb.png" width="100"/>GreatDB (Компания Beijing Wanli Kaiyuan Software Co., Ltd.)</a>
<a style="display:inline-block;" href="https://www.hashdata.xyz/"><img alt="HashData" src="https://gitee.com/anyline/service/raw/master/db/hashdata.png" width="100"/>HashData</a>
<a style="display:inline-block;" href="https://www.hotdb.com/index"><img alt="HotDB" src="https://gitee.com/anyline/service/raw/master/db/hotdb.png" width="100"/>HotDB</a>
<a style="display:inline-block;" href="https://infinispan.org/"><img alt="Infinispan" src="https://gitee.com/anyline/service/raw/master/db/infinispan.png" width="100"/>Infinispan</a>

Здесь заменены названия баз данных, где они были указаны на китайском языке, на русский язык. Также добавлены скобки после названия GreatDB для правильной расстановки запятой перед названием компании.KingBaseKingBase(Компания Beijing Renda Kingbase Information Technology Co., Ltd.) LightDBLightDB MogDBMogDB(Облако и Enmоз) MuDBMuDB(Муронг Инфо Тех) RapidsDBRapidsDB SelectDBSelectDB SinoDBSinoDB StarDBStarDB UbiSQLUbiSQL UXDBUXDB(Компания Beijing YouXuan Software Co., Ltd.) VastbaseVastbase(Компания Beijing Vastdata Technology Co., Ltd.) xigemaDB```markdown XigemaDBXigemaDB XuGuXuGu MaxDBMaxDB CloudantCloudant Oracle Berkeley DBOracle Berkeley DB YugaByteDBYugaByteDB LevelDBLevelDB PineconePinecone HeavyDBHeavyDB MemgraphMemgraph CloudKitCloudKit RethinkDBRethinkDB ExasolExasol

<a style="display:inline-block;" href="https://pouchdb.com/"><img alt="PouchDB" src="https://gitee.com/anyline/service/raw/master/db/pouchdb.png"/>PouchDB</a>```markdown
<xugu(Компания Chengdu Xugu Weiye Technology Co., Ltd.)></xugu>
```<a style="display:inline-block;" href="https://maxdb.sap.com/"><img alt="MaxDB" src="https://gitee.com/anyline/service/raw/master/db/sap.svg" width="100"/>MaxDB</a>
<a style="display:inline-block;" href="https://www.ibm.com/products/cloudant"><img alt="Cloudant" src="https://gitee.com/anyline/service/raw/master/db/ibm.svg" width="100"/>Cloudant</a>
<a style="display:inline-block;" href="https://www.oracle.com/database/technologies/related/berkeleydb.html"><img alt="Oracle Berkeley DB" src="https://gitee.com/anyline/service/raw/master/db/oracle.avif" width="100"/>Oracle Berkeley DB</a>
<a style="display:inline-block;" href="https://www.yugabyte.com/"><img alt="YugabyteDB" src="https://gitee.com/anyline/service/raw/master/db/yugabyte.svg" width="100"/>YugabyteDB</a>
<a style="display:inline-block;" href="https://github.com/google/leveldb"><img alt="LevelDB" src="https://gitee.com/anyline/service/raw/master/db/leveldb.png" width="100"/>LevelDB</a>
<a style="display:inline-block;" href="https://www.pinecone.io/"><img alt="Pinecone" src="https://gitee.com/anyline/service/raw/master/db/pinecone.ico" width="100"/>Pinecone</a>
<a style="display:inline-block;" href="https://github.com/heavyai/heavydb"><img alt="HeavyDB" src="https://gitee.com/anyline/service/raw/master/db/heavy.png" width="100"/>HeavyDB</a>
<a style="display:inline-block;" href="https://memgraph.com/"><img alt="Memgraph" src="https://gitee.com/anyline/service/raw/master/db/memgraph.webp" width="100"/>Memgraph</a>
<a style="display:inline-block;" href="https://developer.apple.com/icloud/cloudkit/"><img alt="CloudKit" src="https://gitee.com/anyline/service/raw/master/db/appledev.svg" width="100"/>CloudKit</a>
<a style="display:inline-block;" href="https://rethinkdb.com/"><img alt="RethinkDB" src="https://gitee.com/anyline/service/raw/master/db/rethinkdb.png" width="100"/>RethinkDB</a>
<a style="display:inline-block;" href="https://www.exasol.com/"><img alt="Exasol" src="https://gitee.com/anyline/service/raw/master/db/exasol.png" width="100"/>Exasol</a>
<a style="display:inline-block;" href="https://drill.apache.org/"><img alt="Drill" src="https://gitee.com/anyline/service/raw/master/db/drill.png" width="100"/>Drill</a>
<a style="display:inline-block;" href="https://pouchdb.com/"><img alt="PouchDB" src="https://gitee.com/anyline/service/raw/master/db/pouchdb">PouchDB</a>

Xugu (Компания Chengdu Xugu Weiye Technology Co., Ltd.))</xugu><a style="display:inline-block;" href="https://pouchdb.com/"><img alt="PouchDB" src="https://gitee.com/anyline/service/raw/master/db/pouchdb.svg" width="100"/>PouchDB</a> 
<a style="display:inline-block;" href="https://phoenix.apache.org/"><img alt="Phoenix" src="https://gitee.com/anyline/service/raw/master/db/phoenix.ico" width="100"/>Phoenix</a> 
<a style="display:inline-block;" href="https://www.enterprisedb.com/"><img alt="EDB" src="https://gitee.com/anyline/service/raw/master/db/edb.svg" width="100"/>EDB</a> 
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-tdengine"><img alt="TDengine" src="https://gitee.com/anyline/service/raw/master/db/tdengine.png" width="100"/>TDengine</a> 
<a style="display:inline-block;" href="https://www.intersystems.com/products/intersystems-iris/"><img alt="IRIS" src="https://gitee.com/anyline/service/raw/master/db/intersystems.svg" width="100"/>IRIS</a> 
<a style="display:inline-block;" href="https://oss.oetiker.ch/rrdtool/"><img alt="RRDtool" src="https://gitee.com/anyline/service/raw/master/db/rrdtool.png" width="100"/>RRDtool</a> 
<a style="display:inline-block;" href="https://www.ontotext.com/"><img alt="GraphDB" src="https://gitee.com/anyline/service/raw/master/db/graphdb.png" width="100"/>GraphDB</a> 
<a style="display:inline-block;" href="https://www.citusdata.com/"><img alt="Citus" src="https://gitee.com/anyline/service/raw/master/db/citussvg.svg" width="100"/>Citus</a> 
<a style="display:inline-block;" href="https://www.coveo.com"><img alt="Coveo" src="https://gitee.com/anyline/service/raw/master/db/coveosvg.svg" width="100"/>Coveo</a> 
<a style="display:inline-block;" href="https://www.ibm.com/products/ims"><img alt="IMS" src="https://gitee.com/anyline/service/raw/master/db/ibmsvg.svg" width="100"/>IMS</a> 
<a style="display:inline-block;" href="https://www.symas.com/symas-embedded-database-lmdb"><img alt="LMDB" src="https://gitee.com/anyline/service/raw/master/db/symassvg.webp" width="100"/>LMDB</a> 
<a style="display:inline-block;" href="https://github.com/vesoft-inc/nebula"><img alt="Nebula" src="https://gitee.com/anyline/service/raw/master/db/nebulasvg.ico" width="100"/>Nebula</a> 
<a style="display:inline-block;" href="https://aws.amazon.com/neptune/"><img alt="Amazon Neptune" src="https://gitee.com/anyline/service/raw/master/db/amazonsvg.```markdown
<a style="display:inline-block;" href="https://docs.aws.amazon.com/neptune/"><img alt="Amazon Neptune" src="https://gitee.com/anyline/service/raw/master/db/webp.png" width="100"/>Amazon Neptune</a> 
<a style="display:inline-block;" href="https://www.oracle.com/java/coherence/"><img alt="Oracle Coherence" src="https://gitee.com/anyline/service/raw/master/db/oraclesvg.png" width="100"/>Oracle Coherence</a>
<a style="display:inline-block;" href="https://www.oracle.com/"><img alt="Oracle Coherence" src="https://gitee.com/anyline/service/raw/master/db/oracle.png" width="100"/>
Oracle Coherence
</a>
<a style="display:inline-block;" href="https://geode.apache.org/">
<img alt="Geode" src="https://gitee.com/anyline/service/raw/master/db/geode.png" width="100"/>
Geode
</a>
<a style="display:inline-block;" href="https://aws.amazon.com/simpledb/">
<img alt="Amazon SimpleDB" src="https://gitee.com/anyline/service/raw/master/db/amazon.webp" width="100"/>
Amazon SimpleDB
</a>
<a style="display:inline-block;" href="https://www.percona.com/software/mysql-database/percona-server">
<img alt="Percona MySQL" src="https://gitee.com/anyline/service/raw/master/db/percona.svg" width="100"/>
Percona MySQL
</a>
<a style="display:inline-block;" href="https://aws.amazon.com/cloudsearch/">
<img alt="Amazon CloudSearch" src="https://gitee.com/anyline/service/raw/master/db/amazon.webp" width="100"/>
Amazon CloudSearch
</a>
<a style="display:inline-block;" href="https://www.stardog.com/">
<img alt="Stardog" src="https://gitee.com/anyline/service/raw/master/db/stardog.webp" width="100"/>
Stardog
</a>
<a style="display:inline-block;" href="https://www.firebolt.io/">
<img alt="Firebolt" src="https://gitee.com/anyline/service/raw/master/db/firebolt.svg" width="100"/>
Firebolt
</a>
<a style="display:inline-block;" href="https://www.datomic.com/">
<img alt="Datomic" src="https://gitee.com/anyline/service/raw/master/db/datomic.png" width="100"/>
Datomic
</a>
<a style="display:inline-block;" href="https://www.gaia-gis.it/fossil/libspatialite/index">
<img alt="SpatiaLite" src="https://gitee.com/anyline/service/raw/master/db/spatialite.png" width="100"/>
SpatiaLite
</a>
<a style="display:inline-block;" href="https://www.monetdb.org/">
<img alt="MonetDB" src="https://gitee.com/anyline/service/raw/master/db/monetdb.png" width="100"/>
MonetDB
</a>
<a style="display:inline-block;" href="https://www.rocketsoftware.com/products/rocket-multivalue-application-development-platform/rocket-jbase">
<img alt="jBASE" src="https://gitee.com/anyline/service/raw/master/db/jbase.png" width="100"/>
jBASE
</a>
``````markdown
<a style="display:inline-block;" href="https://jbase.com/">
<img alt="jBASE" src="https://gitee.com/anyline/service/raw/master/db/rocket.svg" width="100"/>
jBASE
</a>
<a style="display:inline-block;" href="https://basex.org/">
<img alt="BaseX" src="https://gitee.com/anyline/service/raw/master/db/basex.png" width="100"/>
BaseX
</a>
<a style="display:inline-block;" href="https://www.trychroma.com/">
<img alt="Chroma" src="https://gitee.com/anyline/service/raw/master/db/chroma.png" width="100"/>
Chroma
</a>
<a style="display:inline-block;" href="https://www.empress.com/">
<img alt="Empress" src="https://gitee.com/anyline/service/raw/master/db/empress.gif" width="100"/>
Empress
</a>
<a style="display:inline-block;" href="https://aws.amazon.com/documentdb/">
<img alt="AmazonDocumentDB" src="https://gitee.com/anyline/service/raw/master/db/amazon.webp" width="100"/>
AmazonDocumentDB
</a>
<a style="display:inline-block;" href="https://janusgraph.org/">
<img alt="JanusGraph" src="https://gitee.com/anyline/service/raw/master/db/janusgraph.ico" width="100"/>
JanusGraph
</a>
<a style="display:inline-block;" href="http://erlang.org/doc/man/mnesia.html">
<img alt="Mnesia" src="https://gitee.com/anyline/service/raw/master/db/erlang.png" width="100"/>
Mnesia
</a>
<a style="display:inline-block;" href="https://www.tmaxsoft.com/products/tibero/">
<img alt="Tibero" src="https://gitee.com/anyline/service/raw/master/db/tmaxsoft.png" width="100"/>
Tibero
</a>
<a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-questdb">
<img alt="QuestDB" src="https://gitee.com/anyline/service/raw/master/db/questdb.svg" width="100"/>
QuestDB
</a>
<a style="display:inline-block;" href="https://griddb.net/">
<img alt="GridDB" src="https://gitee.com/anyline/service/raw/master/db/griddb.png" width="100"/>
GridDB
</a>
<a style="display:inline-block;" href="https://www.tigergraph.com/">
<img alt="TigerGraph" src="https://gitee.com/anyline/service/raw/master/db/tigergraph.svg" width="100"/>
TigerGraph
</a>
<a style="display:inline-block;" href="http://www.db4o.com/">
<img alt="Db4o" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>
Db4o
</a>
<a style="display:inline-block;" href="https://github.com/weaviate/weaviate">
<img alt="Weaviate" src="https://gitee.com/anyline/service/raw/master/db/weaviate.svg" width="100"/>
Weaviate
</a>
<a style="display:inline-block;" href="https://www.tarantool.io/">
<img alt="Tarantool" src="https://gitee.com/anyline/service/raw/master/db/tarantool" width="100"/>
Tarantool
</a>
```svg "Tarantool") Tarantool</a>  
 <a style="display:inline-block;" href="https://www.gridgain.com/">! [GridGain](https://gitee.com/anyline/service/raw/master/db/gridgain.svg "GridGain") GridGain</a>  
 <a style="display:inline-block;" href="https://dgraph.io/">! [Dgraph](https://gitee.com/anyline/service/raw/master/db/dgraph.svg "Dgraph") Dgraph</a>  
 <a style="display:inline-block;" href="http://www.opentext.com/">! [OpenText](https://gitee.com/anyline/service/raw/master/db/) OpenText</a><a style="display:inline-block;" href="https://github.com/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-opentext">SQLBase</a> 
 <a style="display:inline-block;" href="http://opentsdb.net/"><img alt="OpenTSDB" src="https://gitee.com/anyline/service/raw/master/db/opentsdb.png" width="100"/>OpenTSDB</a> 
 <a style="display:inline-block;" href="https://sourceforge.net/projects/sedna/"><img alt="Sedna" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>Sedna</a> 
 <a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-oceanbase"><img alt="OceanBase" src="https://gitee.com/anyline/service/raw/master/db/oceanbase.webp" width="100"/>OceanBase</a> 
 <a style="display:inline-block;" href="https://fauna.com/"><img alt="Fauna" src="https://gitee.com/anyline/service/raw/master/db/fauna.svg" width="100"/>Fauna</a> 
 <a style="display:inline-block;" href="https://www.datameer.com/"><img alt="Datameer" src="https://gitee.com/anyline/service/raw/master/db/datameer.svg" width="100"/>Datameer</a> 
 <a style="display:inline-block;" href="https://planetscale.com/"><img alt="PlanetScale" src="https://gitee.com/anyline/service/raw/master/db/planetscale.ico" width="100"/>PlanetScale</a> 
 <a style="display:inline-block;" href="https://www.actian.com/data-management/nosql-object-database/"><img alt="ActianNoSQL" src="https://gitee.com/anyline/service/raw/master/db/actian.png" width="100"/>ActianNoSQL</a> 
 <a style="display:inline-block;" href="https://www.oracle.com/database/technologies/related/timesten.html"><img alt="TimesTen" src="https://gitee.com/anyline/service/raw/master/db/oracle.avif" width="100"/>TimesTen</a><a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-voltdb"><img alt="VoltDB" src="https://gitee.com/anyline/service/raw/master/db/voltdb.svg" width="100"/>VoltDB</a> 
 <a style="display:inline-block;" href="https://github.com/apple/foundationdb"><img alt="FoundationDB" src="https://gitee.com/anyline/service/raw/master/db/appledev.svg" width="100"/>FoundationDB</a> 
 <a style="display:inline-block;" href="https://ignitetech.com/softwarelibrary/infobrightdb"><img alt="Infobright" src="https://gitee.com/anyline/service/raw/master/db/ignitetech.png" width="100"/>Infobright</a>
 <a style="display:inline-block;" href="https://www.ibm.com/products/db2/warehouse"><img alt="Db2 Warehouse" src="https://gitee.com/anyline/service/raw/master/db/ibm.svg" width="100"/>Db2 Warehouse</a>
 <a style="display:inline-block;" href="https://www.hpe.com/us/en/servers/nonstop.html"><img alt="NonStop SQL" src="https://gitee.com/anyline/service/raw/master/db/nonstop.svg" width="100"/>NonStop SQL</a>
 <a style="display:inline-block;" href="https://ignitetech.com/objectstore/"><img alt="Object Store" src="https://gitee.com/anyline/service/raw/master/db/ignitetech.ico" width="100"/>Object Store</a>
 <a style="display:inline-block;" href="https://hughestech.com.au/products/msql/"><img alt="mSQL" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>mSQL</a>
 <a style="display:inline-block;" href="http://www.litedb.org/"><img alt="LiteDB" src="https://gitee.com/anyline/service/raw/master/db/litedb.svg" width="100"/>LiteDB</a>
 <a style="display:inline-block;" href="https://milvus.io/"><img alt="Milvus" src="https://gitee.com/anyline/service/raw/master/db/milvus.svg" width="100"/>Milvus</a>
 <a style="display:inline-block;" href="http://www.dataease.com/"><img alt="DataEase" src="https://gitee.com/anyline/service/raw/master/db/dataease.png" width="100"/>DataEase</a>
 <a style="display:inline-block;" href="https://cubrid.com"><img alt="Cubrid" src="https://gitee.com/anyline/service/raw/master/db/cubrid.png" width="100"/>Cubrid</a>
 <a style="display:inline-block;" href="https://www.rocketsoftware.com/products/rocket-d3"><img alt="D3" src="https://gitee.com/anyline/service/raw/master/db/rocket.svg" width="100"/>D3</a>
 <a style="display:inline-block;" href="https://victoriaMetrics.com/"><img alt="Victoria Metrics" src="https://gitee.com/anyline/service/raw/master/db/victoria_metrics.svg" width="100"/>Victoria Metrics</a>```markdown
<a style="display:inline-block;" href="https://kylin.apache.org/"><img alt="Kylin" src="https://gitee.com/anyline/service/raw/master/db/kylin.png" width="100"/>Kylin</a>
<a style="display:inline-block;" href="https://giraph.apache.org/"><img alt="Giraph" src="https://gitee.com/anyline/service/raw/master/db/giraph.png" width="100"/>Giraph</a>
<a style="display:inline-block;" href="https://sourceforge.net/projects/fis-gtm/"><img alt="GTM" src="https://gitee.com/anyline/service/raw/master/db/gtm.png" width="100"/>GTM</a>
<a style="display:inline-block;" href="https://objectbox.io/"><img alt="ObjectBox" src="https://gitee.com/anyline/service/raw/master/db/objectbox.png" width="100"/>ObjectBox</a>
<a style="display:inline-block;" href="https://windev.com/pcsoft/hfsql.htm"><img alt="HFSQL" src="https://gitee.com/anyline/service/raw/master/db/hfsql.png" width="100"/>HFSQL</a>
<a style="display:inline-block;" href="https://github.com/meilisearch/meilisearch"><img alt="Meilisearch" src="https://gitee.com/anyline/service/raw/master/db/meilisearch.svg" width="100"/>Meilisearch</a>
<a style="display:inline-block;" href="https://www.matrixorigin.io/"><img alt="MatrixOne" src="https://gitee.com/anyline/service/raw/master/db/matrixone.svg" width="100"/>MatrixOne</a>
<a style="display:inline-block;" href="https://www.mcobject.com/perst/"><img alt="Perst" src="https://gitee.com/anyline/service/raw/master/db/mcobject.png" width="100"/>Perst</a>
<a style="display:inline-block;" href="https://www.oracle.com/database/technologies/related/rdb.html"><img alt="Oracle RDB" src="https://gitee.com/anyline/service/raw/master/db/oracle.avif" width="100"/>Oracle RDB</a>
<a style="display:inline-block;" href="https://www.gigaspaces.com"><img alt="GigaSpaces" src="https://gitee.com/anyline/service/raw/master/db/gigaspaces.png" width="100"/>GigaSpaces</a>
<a style="display:inline-block;" href="https://vitess.io/"><img alt="Vitess" src="https://gitee.com/anyline/service/raw/master/db/vitess.png" width="100"/>Vitess</a>
<a style="display:inline-block;" href="https://reality.necsws.com/"><img alt="Reality" src="https://gitee.com/anyline/service/raw/master/db/necsws.jpg" width="100"/>Reality</a>
<a style="display:inline-block;" href="https://sql.js.org/"><img alt="SQLJS" src="https://gitee.com/anyline/service/raw/master/db/sqljs.png" width="100"/>SQLJS</a>
``` <a style="display:inline-block;" href="https://www.hpe.com/us/en/software/data-fabric.html"><img alt="Ezmeral" src="https://gitee.com/anyline/service/raw/master/db/nonstop.svg" width="100"/>Ezmeral</a>
 <a style="display:inline-block;" href="https://allegrograph.com/"><img alt="AllegroGraph" src="https://gitee.com/anyline/service/raw/master/db/allegrograph.png" width="100"/>AllegroGraph</a>
 <a style="display:inline-block;" href="https://m3db.io/"><img alt="M3DB" src="https://gitee.com/anyline/service/raw/master/db/m3db.svg" width="100"/>M3DB</a>
 <a style="display:inline-block;" href="http://hawq.apache.org/"><img alt="HAWQ" src="https://gitee.com/anyline/service/raw/master/db/hawq.png" width="100"/>HAWQ</a>
 <a style="display:inline-block;" href="https://www.starrocks.io/"><img alt="StarRocks" src="https://gitee.com/anyline/service/raw/master/db/starrocks.webp" width="100"/>StarRocks</a>
 <a style="display:inline-block;" href="https://teamblue.unicomsi.com/products/soliddb/"><img alt="solidDB" src="https://gitee.com/anyline/service/raw/master/db/unicomsi.png" width="100"/>solidDB</a>
 <a style="display:inline-block;" href="https://www.3ds.com/nuodb-distributed-sql-database/"><img alt="NuoDB" src="https://gitee.com/anyline/service/raw/master/db/nuodb.png" width="100"/>NuoDB</a>
 <a style="display:inline-block;" href="https://www.alachisoft.com/ncache/"><img alt="NCache" src="https://gitee.com/anyline/service/raw/master/db/ncache.svg" width="100"/>NCache</a>
 <a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-opengauss"><img alt="OpenGauss" src="https://gitee.com/anyline/service/raw/master/db/opengauss.png" width="100"/>OpenGauss</a>
 <a style="display:inline-block;" href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-iotdb"><img alt="IoTDB" src="https://gitee.com/anyline/service/raw/master/db/iotdb.webp" width="100"/>IoTDB</a>
 <a style="display:inline-block;" href="https://github.com/qdrant/qdrant"><img alt="Qdrant" src="https://gitee.com/anyline/service/raw/master/db/qdrant.svg" width="100"/>Qdrant</a>
 <a style="display:inline-block;" href="https://www.rocketsoftware.com/products/rocket-m204"><img alt="Model204" src="https://gitee.com/anyline/service/raw/master/db/rocket.svg" width="100"/>Model204</a><a style="display:inline-block;" href="https://zodb.org/"><img alt="ZODB" src="https://gitee.com/anyline/service/raw/master/db/zodb.png" width="100"/>ZODB</a>
<a style="display:inline-block;" href="https://www.bigchaindb.com/"><img alt="BigchainDB" src="https://gitee.com/anyline/service/raw/master/db/bigchaindb.png" width="100"/>BigchainDB</a>
<a style="display:inline-block;" href="https://surrealdb.com/"><img alt="SurrealDB" src="https://gitee.com/anyline/service/raw/master/db/surrealdb.svg" width="100"/>SurrealDB</a>
<a style="display:inline-block;" href="https://xapian.org/"><img alt="Xapian" src="https://gitee.com/anyline/service/raw/master/db/xapian.png" width="100"/>Xapian</a>
<a style="display:inline-block;" href="https://www.elevatesoft.com/products?category=dbisam"><img alt="DBISAM" src="https://gitee.com/anyline/service/raw/master/db/dbisam.png" width="100"/>DBISAM</a>
<a style="display:inline-block;" href="https://www.actian.com/analytic-database/vector-analytic-database/"><img alt="Actian Vector" src="https://gitee.com/anyline/service/raw/master/db/actian.png" width="100"/>ActianVector</a>
<a style="display:inline-block;" href="https://github.com/hibari/hibari"><img alt="Hibari" src="https://gitee.com/anyline/service/raw/master/db/hibari.png" width="100"/>Hibari</a>
<a style="display:inline-block;" href="https://github.com/dolthub/dolt"><img alt="Dolt" src="https://gitee.com/anyline/service/raw/master/db/dolt.png" width="100"/>Dolt</a>
<a style="display:inline-block;" href="https://typedb.com/"><img alt="TypeDB" src="https://gitee.com/anyline/service/raw/master/db/typedb.svg" width="100"/>TypeDB</a>
<a style="display:inline-block;" href="http://altibase.com/"><img alt="Altibase" src="https://gitee.com/anyline/service/raw/master/db/altibase.png" width="100"/>Altibase</a>
<a style="display:inline-block;" href="https://aws.amazon.com/timestream/"><img alt="Amazon Timestream" src="https://gitee.com/anyline/service/raw/master/db/amazon.webp" width="100"/>Amazon Timestream</a>
<a style="display:inline-block;" href="https://www.objectdb.com/"><img alt="ObjectDB" src="https://gitee.com/anyline/service/raw/master/db/objectdb.ico" width="100"/>ObjectDB</a>
<a style="display:inline-block;" href="https://blazegraph.net/">BlazeGraph</a>```markdown
<a style="display:inline-block;" href="https://gitee.com/anyline/service/raw/master/db/blazegraph.png"><img alt="Blazegraph" src="https://gitee.com/anyline/service/raw/master/db/blazegraph.png" width="100"/>Blazegraph</a> 
<a style="display:inline-block;" href="https://aws.amazon.com/keyspaces/"><img alt="Amazon Keyspaces" src="https://gitee.com/anyline/service/raw/master/db/amazon.webp" width="100"/>Amazon Keyspaces</a> 
<a style="display:inline-block;" href="https://www.tencentcloud.com/products/dcdb"><img alt="TDSQL" src="https://gitee.com/anyline/service/raw/master/db/tencentcloud.ico" width="100"/>TDSQL (Tencent Cloud Computing (Beijing) Co., Ltd.)</a> 
<a style="display:inline-block;" href="https://www.ca.com/us/products/ca-idms.html"><img alt="IDMS" src="https://gitee.com/anyline/service/raw/master/db/broadcom.png" width="100"/>IDMS</a> 
<a style="display:inline-block;" href="https://rdf4j.org/"><img alt="RDF4J" src="https://gitee.com/anyline/service/raw/master/db/rdf4j.png" width="100"/>RDF4J</a> 
<a style="display:inline-block;" href="https://www.rdf4j.org/"><img alt="RDF4J" src="https://gitee.com/anyline/service/raw/master/db/rdf4j.png" width="100"/>RDF4J</a> 
<a style="display:inline-block;" href="https://www.geomesa.org/"><img alt="GeoMesa" src="https://gitee.com/anyline/service/raw/master/db/geomesa.png" width="100"/>GeoMesa</a> 
<a style="display:inline-block;" href="http://exist-db.org/"><img alt="eXistdb" src="https://gitee.com/anyline/service/raw/master/db/existdb.gif" width="100"/>eXistdb</a> 
<a style="display:inline-block;" href="https://www.ibm.com/products/ibm-websphere-extreme-scale"><img alt="eXtremeScale" src="https://gitee.com/anyline/service/raw/master/db/extremescale.svg" width="100"/>eXtremeScale</a> 
<a style="display:inline-block;" href="https://rockset.com/"><img alt="Rockset" src="https://gitee.com/anyline/service/raw/master/db/rockset.svg" width="100"/>Rockset</a> 
<a style="display:inline-block;" href="https://yellowbrick.com/"><img alt="Yellowbrick" src="https://gitee.com/anyline/service/raw/master/db/yellowbrick.svg" width="100"/>Yellowbrick</a> 
<a style="display:inline-block;" href="https://sqream.com/"><img alt="SQream" src="https://gitee.com/anyline/service/raw/master/db/sqream.svg" width="100"/>SQream</a> 
<a style="display:inline-block;" href="https://www.broadcom.com/products/mainframe/databases-database-mgmt/datacom"><img alt="DatacomDB" src="https://gitee.com/anyline/service/raw/master/db/broadcom.png" width="100"/>DatacomDB</a>
```<a style="display:inline-block;" href="https://typesense.org/"><img alt="Typesense" src="https://gitee.com/anyline/service/raw/master/db/typesense.svg" width="100"/>Typesense</a>
<a style="display:inline-block;" href="https://mapdb.org/"><img alt="MapDB" src="https://gitee.com/anyline/service/raw/master/db/mapdb.png" width="100"/>MapDB</a>
<a style="display:inline-block;" href="https://objectivity.com/products/objectivitydb/"><img alt="ObjectivityDB" src="https://gitee.com/anyline/service/raw/master/db/objectivity.png" width="100"/>ObjectivityDB</a>
<a style="display:inline-block;" href="https://cratedb.com/?utm_campaign=2023-Q1-WS-DB-Engines&utm_source=db-engines.com"><img alt="CrateDB" src="https://gitee.com/anyline/service/raw/master/db/cratedb.svg" width="100"/>CrateDB</a>
<a style="display:inline-block;" href="https://www.mcobject.com"><img alt="eXtremeDB" src="https://gitee.com/anyline/service/raw/master/db/extremedb.webp" width="100"/>eXtremeDB</a>
<a style="display:inline-block;" href="https://paradigm4.com/scidb/"><img alt="SciDB" src="https://gitee.com/anyline/service/raw/master/db/paradigm4.svg" width="100"/>SciDB</a>
<a href="http://alasql.org"><img alt="AlaSQL" src="https://gitee.com/anyline/service/raw/master/db/alasql.png" width="100"/>AlaSQL</a>
<a href="https://github.com/kairosdb/kairosdb"><img alt="KairosDB" src="https://gitee.com/anyline/service/raw/master/db/kairosdb.png" width="100"/>KairosDB</a>
<a href="https://www.kinetica.com/"><img alt="Kinetica" src="https://gitee.com/anyline/service/raw/master/db/kinetica.png" width="100"/>Kinetica</a>
<a href="https://www.alibabacloud.com/product/maxcompute"><img alt="MaxCompute" src="https://gitee.com/anyline/service/raw/master/db/aliyun.ico" width="100"/>MaxCompute</a>
<a href="https://github.com/Snapchat/KeyDB"><img alt="KeyDB" src="https://gitee.com/anyline/service/raw/master/db/keydb.svg" width="100"/>KeyDB</a>
<a href="https://www.revelation.com/index.php/products/openinsight"><img alt="OpenInsight" src="https://gitee.com/anyline/service/raw/master/db/openinsight.png" width="100"/>OpenInsight</a>
<a href="https://www.alibabacloud.com/product/analyticdb-for-mysql"><img alt="AnalyticDB MySQL" src="https://gitee.com/anyline/service/raw/master/db/aliyun.ico" width="100"/>AnalyticDB MySQL</a>
<a href="https://gemtalksystems.com/"><img alt="GemStone S" src="https://gitee.com/anyline/service/raw/master/db/GemTalkLogo.png" width="100"/>GemStone S</a>
<a href="https://vald.vdaas.org/"><img alt="Vald" src="https://gitee.com/anyline/service/raw/master/db/vald.png" width="100"/>Vald</a>svg "Vald") Валд</a>  
 <a href="/anyline/anyline-simple/tree/master/anyline-simple-data-jdbc-dialect/anyline-simple-data-jdbc-doris">![](https://gitee.com/anyline/service/raw/master/db/doris.svg "Doris") Doris</a>  
 <a href="https://www.devgraph.com/scalearc/">![](https://gitee.com/anyline/service/raw/master/db/scalearc.svg "ScaleArc") ScaleArc</a>  
 <a href="https://www.risingwave.com/database/">![](https://gitee.com/anyline/service/raw/master/db/risingwave.png "RisingWave") RisingWave</a><a style="display:inline-block;" href="http://www.risingwave.com/"><img alt="RisingWave" src="https://gitee.com/anyline/service/raw/master/db/risingwave.svg" width="100"/>RisingWave</a>
  <a style="display:inline-block;" href="http://www.frontbase.com/"><img alt="FrontBase" src="https://gitee.com/anyline/service/raw/master/db/frontbase.gif" width="100"/>FrontBase</a>
  <a style="display:inline-block;" href="https://www.postgres-xl.org/"><img alt="PostgresXL" src="https://gitee.com/anyline/service/raw/master/db/pgxl.jpg" width="100"/>PostgresXL</a>
  <a style="display:inline-block;" href="https://pinot.apache.org/"><img alt="Pinot" src="https://gitee.com/anyline/service/raw/master/db/apachepoint.png" width="100"/>Pinot</a>
  <a style="display:inline-block;" href="https://spotify.github.io/heroric/#!/index"><img alt="Heroic" src="https://gitee.com/anyline/service/raw/master/db/heroic.png" width="100"/>Heroic</a>
  <a style="display:inline-block;" href="https://vistadb.com/"><img alt="VistaDB" src="https://gitee.com/anyline/service/raw/master/db/vistadb.png" width="100"/>VistaDB</a>
  <a style="display:inline-block;" href="http://scalaris.zib.de/"><img alt="Scalaris" src="https://gitee.com/anyline/service/raw/master/db/scalaris.png" width="100"/>Scalaris</a>
  <a style="display:inline-block;" href="https://www.nexusdb.com/"><img alt="NexusDB" src="https://gitee.com/anyline/service/raw/master/db/nexusdb.gif" width="100"/>NexusDB</a>
  <a style="display:inline-block;" href="https://www.percona.com/mongodb/software/percona-server-for-mongodb"><img alt="PerconaMongoDB" src="https://gitee.com/anyline/service/raw/master/db/percona.svg" width="100"/>PerconaMongoDB</a>
  <a style="display:inline-block;" href="https://www.graphengine.io/"><img alt="GraphEngine" src="https://gitee.com/anyline/service/raw/master/db/graphengine.ico" width="100"/>GraphEngine</a>
  <a style="display:inline-block;" href="https://github.```markdown
<a style="display:inline-block;" href="https://boltdb.org/"><img alt="BoltDB" src="https://gitee.com/anyline/service/raw/master/db/bolt.png" width="100"/>BoltDB</a>
<a style="display:inline-block;" href="https://atoti.io/"><img alt="atoti" src="https://gitee.com/anyline/service/raw/master/db/atoti.svg" width="100"/>atoti</a>
<a style="display:inline-block;" href="https://vespa.ai/"><img alt="Vespa" src="https://gitee.com/anyline/service/raw/master/db/vespa.png" width="100"/>Vespa</a>
<a style="display:inline-block;" href="https://github.com/techfort/LokiJS"><img alt="LokiJS" src="https://gitee.com/anyline/service/raw/master/db/lokijs.png" width="100"/>LokiJS</a>
<a style="display:inline-block;" href="https://raima.com/"><img alt="Raima" src="https://gitee.com/anyline/service/raw/master/db/raima.png" width="100"/>Raima</a>
<a style="display:inline-block;" href="https://databend.rs/"><img alt="Databend" src="https://gitee.com/anyline/service/raw/master/db/databend.svg" width="100"/>Databend</a>
<a style="display:inline-block;" href="https://www.rbase.com/"><img alt="RBASE" src="https://gitee.com/anyline/service/raw/master/db/rbase.png" width="100"/>RBASE</a>
<a style="display:inline-block;" href="https://librdf.org/"><img alt="Redland" src="https://gitee.com/anyline/service/raw/master/db/librdf.ico" width="100"/>Redland</a>
<a style="display:inline-block;" href="https://harperdb.io/"><img alt="HarperDB" src="https://gitee.com/anyline/service/raw/master/db/harper.webp" width="100"/>HarperDB</a>
<a style="display:inline-block;" href="https://splicemachine.com/"><img alt="SpliceMachine" src="https://gitee.com/anyline/service/raw/master/db/splicemachine.png" width="100"/>SpliceMachine</a>
<a style="display:inline-block;" href="https://www.alibabacloud.com/product/hybriddb-postgresql"><img alt="AnalyticDB PostgreSQL" src="https://gitee.com/anyline/service/raw/master/db/aliyun.ico" width="100"/>AnalyticDB PostgreSQL</a>
<a style="display:inline-block;" href="https://modeshape.jboss.org/"><img alt="ModeShape" src="https://gitee.com/anyline/service/raw/master/db/modeshape.ico" width="100"/>ModeShape</a>
<a style="display:inline-block;" href="https://www.jadeworld.com/">

Замечание: Последний href был прерван и завершён неполной информацией. Для корректного завершения строки требуется дополнительная информация.```markdown JadeJade SequoiaDBSequoiaDB CnosDBCnosDB ITTIAITTIA EllipticsElliptics Elliptics Эллиптики Elassandra Элассандр Rasdaman Расдаман SearchBlox ПоискБлокс InfiniteGraph ИнфинитиГраф ApsaraDB PolarDB АпсараDB ПоларДБ Starcounter Старконтроль Axibase

<img alt="Aksai Base" src="https://gitee.com/anyline/service/raw/master/db/aksai.png" width="100"/>
Аксайбаз
</a>
<a style="display:inline-block;" href="https://kyligence.io/kyligence-enterprise/">
<img alt="Kyligence" src="https://gitee.com/anyline/service/raw/master/db/kyligence.png" width="100"/>
Килигенс
</a>
<a style="display:inline-block;" href="https://www.featurebase.com/">
<img alt="FeatureBase" src="https://gitee.com/anyline/service/raw/master/db/featurebase.png" width="100"/>
ФичерБейс
</a>
<a style="display:inline-block;" href="https://google.github.io/lovefield/">
<img alt="Lovefield" src="https://gitee.com/anyline/service/raw/master/db/lovefield.png" width="100"/>
Лавфилд
</a>
<a style="display:inline-block;" href="http://www.project-voldemort.com/">
<img alt="Voldemort" src="https://gitee.com/anyline/service/raw/master/db/voldemort.png" width="100"/>
Волдеморт
</a>
<a style="display:inline-block;" href="https://brytlyt.io/">
<img alt="Brytlyt" src="https://gitee.com/anyline/service/raw/master/db/brytlyt.png" width="100"/>
Брайтлит
</a>
<a style="display:inline-block;" href="https://www.machbase.com/">
<img alt="MachbaseNeo" src="https://gitee.com/anyline/service/raw/master/db/machbase.png" width="100"/>
МачбейсНео
</a>
<a style="display:inline-block;" href="https://esd.actian.com/product/Versant_FastObjects/">
<img alt="ActianFastObjects" src="https://gitee.com/anyline/service/raw/master/db/actian.png" width="100"/>
АкшионФастОбъектс
</a>
<a style="display:inline-block;" href="https://www.rocketsoftware.com/products/rocket-multivalue-application-development-platform/rocket-open-qm">
<img alt="OpenQM" src="https://gitee.com/anyline/service/raw/master/db/rocket.svg" width="100"/>
ОпенКМ
</a>
<a style="display:inline-block;" href="https://www.oxfordsemantic.tech/">
<img alt="RDFox" src="https://gitee.com/anyline/service/raw/master/db/rdfox.svg" width="100"/>
РДФокс
</a>
<a style="display:inline-block;" href="https://cambridgesemantics.com/anzograph/">
<img alt="AnzoGraph_DB" src="https://gitee.com/anyline/service/raw/master/db/cambridgesemantics.svg" width="100"/>
АнцоГраф_БД
</a>
<a style="display:inline-block;" href="https://flur.ee/">
<img alt="Fluree" src="https://gitee.com/anyline/service/raw/master/db/fluee.png" width="100"/>
Флурее
</a><a style="display:inline-block;" href="https://immudb.io/"><img alt="Immudb" src="https://gitee.com/anyline/service/raw/master/db/immudb.svg" width="100"/>Иммудб</a>
<a style="display:inline-block;" href="https://www.mimer.com/"><img alt="Mimer_SQL" src="https://gitee.com/anyline/service/raw/master/db/mimer.png" width="100"/>Мимер_SQL</a>
<a style="display:inline-block;" href="https://github.com/ydb-platform/ydb"><img alt="YDB" src="https://gitee.com/anyline/service/raw/master/db/ydb.svg" width="100"/>ЙДБ</a>
<a style="display:inline-block;" href="https://www.aelius.com/njh/redstore/"><img alt="RedStore" src="https://gitee.com/anyline/service/raw/master/db/redstore.png" width="100"/>РедСторе</a>
<a style="display:inline-block;" href="http://www.hypergraphdb.org/"><img alt="HyperGraphDB" src="https://gitee.com/anyline/service/raw/master/db/hypergraphdb.jpg" width="100"/>ХайперГрафДБ</a>
<a style="display:inline-block;" href="https://github.com/marqo-ai/marqo"><img alt="Marqo" src="https://gitee.com/anyline/service/raw/master/db/marqo.png" width="100"/>Марко</a>
<a style="display:inline-block;" href="https://github.com/Softmotions/ejdb"><img alt="EJDB" src="https://gitee.com/anyline/service/raw/master/db/ejdb.png" width="100"/>ЭджДБ</a>
<a style="display:inline-block;" href="https://tajo.apache.org/"><img alt="Tajo" src="https://gitee.com/anyline/service/raw/master/db/tajo.png" width="100"/>Тајо</a>
<a style="display:inline-block;" href="https://github.com/activeloopai/deeplake"><img alt="DeepLake" src="https://gitee.com/anyline/service/raw/master/db/deeplake.png" width="100"/>ДипЛейк</a>
<a style="display:inline-block;" href="https://www.asiainfo.com/en_us/product_aisware_antdb_detail.html"><img alt="AntDB" src="https://gitee.com/anyline/service/raw/master/db/antdb.png" width="100"/>АнтДБ</a>
<a style="display:inline-block;" href="https://www.leanxcale.com/"><img alt="LeanXcale" src="https://gitee.com/anyline/service/raw/master/db/leanxcale.png" width="100"/>Линкскал</a>
<a style="display:inline-block;" href="http://www.mulgara.org/"><img alt="Mulgara" src="https://gitee.com/anyline/service/raw/master/db/mulgara.jpg" width="100"/>Мулгара</a>
<a style="display:inline-block;" href="https://fast.fujitsu.com"><img alt="Fujitsu" src="https://gitee.com/anyline/service/raw/master/db/fujitsu.svg" width="100"/>Фуджитсу</a><a style="display:inline-block;" href="https://github.com/twitter-archive/flockdb"><img alt="FlockDB" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>FlockDB</a>
<a style="display:inline-block;" href="https://github.com/STSSoft/STSdb4"><img alt="STSdb" src="https://gitee.com/anyline/service/raw/master/db/stsdb.png" width="100"/>STSdb</a>
<a style="display:inline-block;" href="https://www.openpie.com/"><img alt="PieCloudDB" src="https://gitee.com/anyline/service/raw/master/db/openpie.svg" width="100"/>PieCloudDB</a>
<a style="display:inline-block;" href="https://www.transaction.de/en/products/transbase.html"><img alt="Transbase" src="https://gitee.com/anyline/service/raw/master/db/transaction.png" width="100"/>Transbase</a>
<a style="display:inline-block;" href="https://www.elevatesoft.com/products?category=edb"><img alt="ElevateDB" src="https://gitee.com/anyline/service/raw/master/db/elevatedb.png" width="100"/>ElevateDB</a>
<a style="display:inline-block;" href=""><img alt="RiakTS" src="https://gitee.com/anyline/service/raw/master/db/riak.png" width="100"/>RiakTS</a>
<a style="display:inline-block;" href="https://www.faircom.com/products/faircom-db"><img alt="FaircomDB" src="https://gitee.com/anyline/service/raw/master/db/faircom.svg" width="100"/>FaircomDB</a>
<a style="display:inline-block;" href="http://n-eventstore.org/"><img alt="NEventStore" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>NEventStore</a>
<a style="display:inline-block;" href="https://github.com/bloomberg/comdb2"><img alt="Comdb2" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>Comdb2</a>
<a style="display:inline-block;" href="https://yottadb.com/"><img alt="YottaDB" src="https://gitee.com/anyline/service/raw/master/db/yottadb.svg" width="100"/>YottaDB</a>
<a style="display:inline-block;" href="https://quasar.ai/"><img alt="Quasardb" src="https://gitee.com/anyline/service/raw/master/db/quasar.svg" width="100"/>Quasardb</a>
<a style="display:inline-block;" href="https://www.speedb.io/"><img alt="Speedb" src="https://gitee.com/anyline/service/raw/master/db/speedb.svg" width="100"/>Speedb</a>
<a style="display:inline-block;" href="http://www.esgyn.cn/"><img alt="EsgynDB" src="https://gitee.com/anyline/service/raw/master/db/esgyn.jpg" width="100"/>EsgynDB</a>
<a style="display:inline-block;" href="https://community.tibco.com/">```markdown
<a style="display:inline-block;" href="https://gitee.com/anyline/com/products/tibco-computedb"><img alt="ComputeDB" src="https://gitee.com/anyline/service/raw/master/db/tibco.ico" width="100"/>ComputeDB</a>
<a style="display:inline-block;" href="https://hugegraph.apache.org/"><img alt="HugeGraph" src="https://gitee.com/anyline/service/raw/master/db/hugegraph.png" width="100"/>HugeGraph</a>
<a style="display:inline-block;" href="https://www.valentina-db.net/"><img alt="Valentina" src="https://gitee.com/anyline/service/raw/master/db/valentina.png" width="100"/>Valentina</a>
<a style="display:inline-block;" href="https://github.com/pipelinedb/pipelinedb"><img alt="PipelineDB" src="https://gitee.com/anyline/service/raw/master/db/pipelinedb.png" width="100"/>PipelineDB</a>
<a style="display:inline-block;" href="https://bangdb.com/"><img alt="Bangdb" src="https://gitee.com/anyline/service/raw/master/db/bangdb.png" width="100"/>Bangdb</a>
<a style="display:inline-block;" href="https://dydra.com/about"><img alt="Dydra" src="https://gitee.com/anyline/service/raw/master/db/dydra.png" width="100"/>Dydra</a>
<a style="display:inline-block;" href="https://tinkerpop.apache.org/docs/current/reference/#tinkergraph-gremlin"><img alt="TinkerGraph" src="https://gitee.com/anyline/service/raw/master/db/apache.ico" width="100"/>TinkerGraph</a>
<a style="display:inline-block;" href="https://www.ibm.com/products/db2-event-store"><img alt="EventStore" src="https://gitee.com/anyline/service/raw/master/db/eventstore.svg" width="100"/>EventStore</a>
<a style="display:inline-block;" href="https://www.ultipa.com/"><img alt="Ultipa" src="https://gitee.com/anyline/service/raw/master/db/ultipa.svg" width="100"/>Ultipa</a>
<a style="display:inline-block;" href="https://www.alibabacloud.com/product/table-store"><img alt="Table Storage" src="https://gitee.com/anyline/service/raw/master/db/aliyun.ico" width="100"/>Table Storage</a>
<a style="display:inline-block;" href="https://www.actian.com/data-management/psql-embedded-database/"><img alt="Actian PSQL" src="https://gitee.com/anyline/service/raw/master/db/actian.png" width="100"/>Actian PSQL</a>
<a style="display:inline-block;" href="https://www.cubicweb.org/"><img alt="CubicWeb" src="https://gitee.com/anyline/service/raw/master/db/cubicweb.svg" width="100"/>CubicWeb</a>

Внесены изменения в названия продуктов, чтобы они были корректно переведены на русский язык.```markdown Эксорбайт Эксорбайт ГрафБейс ГрафБейс ТокиоТирант ТокиоТирант Скайтэйбл Скайтэйбл ТерминусДБ ТерминусДБ Баджер Баджер ГриптаймДБ ГриптаймДБ Транслэтчет Транслэтчет АркейдДБ АркейдДБ КунДБ КунДБ Спэрсити Спэрсити МайСкал МайСкал БигОбъект БигОбъект Линтер Линтер

<a style="display:inline-block;" href="https://github.com/dragonflydb/dragonfly"><img alt="Dragonfly" src="https://gitee.com/anyline/service/raw/master/db/dragonflydb.svg" width="100"/>Dragonfly</a>
<a style="display:inline-block;" href="https://www.tigrisdata.com/"><img alt="Tigris" src="https://gitee.com/anyline/service/raw/master/db/tigris.svg" width="100"/>Tigris</a>
<a style="display:inline-block;" href="http://www.h2gis.org/"><img alt="H2GIS" src="https://gitee.com/anyline/service/raw/master/db/h2gis.png" width="100"/>H2GIS</a>
<a style="display:inline-block;" href="https://velocitydb.com/"><img alt="VelocityDB" src="https://gitee.com/anyline/service/raw/master/db/velocitydb.png" width="100"/>VelocityDB</a>
<a style="display:inline-block;" href="https://www.nuget.org/packages/EloqueraDB/"><img alt="Eloquera" src="https://gitee.com/anyline/service/raw/master/db/eloquera.png" width="100"/>Eloquera</a>
<a style="display:inline-block;" href="https://github.com/rescrv/HyperLevelDB"><img alt="HyperLevelDB" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>HyperLevelDB</a>
<a style="display:inline-block;" href="https://github.com/com/xtdb/xtdb"><img alt="XTDB" src="https://gitee.com/anyline/service/raw/master/db/xtdb.svg" width="100"/>XTDB</a>
<a style="display:inline-block;" href="http://blueflood.io/"><img alt="Blueflood" src="https://gitee.com/anyline/service/raw/master/db/blueflood.png" width="100"/>Blueflood</a>
<a style="display:inline-block;" href="https://senseidb.github.io/sensei/"><img alt="SenseiDB" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>SenseiDB</a>
<a style="display:inline-block;" href="https://www.alibabacloud.com/product/hitsdb"><img alt="TSDB" src="https://gitee.com/anyline/service/raw/master/db/aliyun.ico" width="100"/>TSDB</a>
<a style="display:inline-block;" href="https://github.com/krareT/trkdb"><img alt="TerarkDB" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>TerarkDB</a>
<a style="display:inline-block;" href="https://origodb.com/"><img alt="OrigoDB" src="https://gitee.com/anyline/service/raw/master/db/origodb.ico" width="100"/>OrigoDB</a><a style="display:inline-block;" href="https://tomp2p.net/"><img alt="TomP2P" src="https://gitee.com/anyline/service/raw/master/db/tomp2p.png" width="100"/>TomP2P</a>
<a style="display:inline-block;" href="https://www.xtremedata.com/"><img alt="XtremeData" src="https://gitee.com/anyline/service/raw/master/db/xtremedata.svg" width="100"/>XtremeData</a>
<a style="display:inline-block;" href="https://www.siaqodb.com/"><img alt="Siaqodb" src="https://gitee.com/anyline/service/raw/master/db/siaqodb.svg" width="100"/>Siaqodb</a>
<a style="display:inline-block;" href="https://ytsaurus.tech/"><img alt="YTsaurus" src="https://gitee.com/anyline/service/raw/master/db/ytsaurus.svg" width="100"/>YTsaurus</a>
<a style="display:inline-block;" href="https://www.warp10.io/"><img alt="Warp" src="https://gitee.com/anyline/service/raw/master/db/warp10.svg" width="100"/>Warp</a>
<a style="display:inline-block;" href="http://www.opengemini.org/"><img alt="openGemini" src="https://gitee.com/anyline/service/raw/master/db/opengemini.svg" width="100"/>openGemini</a>
<a style="display:inline-block;" href="https://upscaledb.com/"><img alt="Upscaledb" src="https://gitee.com/anyline/service/raw/master/db/upscaledb.svg" width="100"/>Upscaledb</a>
<a style="display:inline-block;" href="https://en.gstore.cn/"><img alt="gStore" src="https://gitee.com/anyline/service/raw/master/db/gstore.png" width="100"/>gStore</a>
<a style="display:inline-block;" href="http://www.ousshu.com/product/oushuDB"><img alt="OushuDB" src="https://gitee.com/anyline/service/raw/master/db/oushu.svg" width="100"/>OushuDB</a>
<a style="display:inline-block;" href="https://indica.nl/"><img alt="Indica" src="https://gitee.com/anyline/service/raw/master/db/indica.jpg" width="100"/>Indica</a>
<a style="display:inline-block;" href="https://brightstardb.com/"><img alt="BrightstarDB" src="https://gitee.com/anyline/service/raw/master/db/brightstardb.png" width="100"/>BrightstarDB</a>
<a style="display:inline-block;" href="https://boilerbay.com/"><img alt="InfinityDB" src="https://gitee.com/anyline/service/raw/master/db/boilerbay.jpg" width="100"/>InfinityDB</a>
<a style="display:inline-block;" href="https://wwwalachisoft.com/nosdb/"><img alt="NosDB" src="https://gitee.com/anyline/service/raw/master/db/ncache.svg" width="100"/>NosDB</a>
<a style="display:inline-block;" href="https://www.transwarp.io/">Transwarp</a><a href="/cn/en/subproduct/hippo"><img alt="Hippo" src="https://gitee.com/anyline/service/raw/master/db/transwarp.svg" width="100"/>Hippo</a> 
 <a style="display:inline-block;" href="https://github.com/appy-one/acebase"><img alt="Acebase" src="https://gitee.com/anyline/service/raw/master/db/" width="100"/>Acebase</a> 
 <a style="display:inline-block;" href="https://siridb.com/"><img alt="SiriDB" src="https://gitee.com/anyline/service/raw/master/db/sisridb.svg" width="100"/>SiriDB</a> 
 <a style="display:inline-block;" href="https://sitewhere.io/"><img alt="SiteWhere" src="https://gitee.com/anyline/service/raw/master/db/sitewhere.svg" width="100"/>SiteWhere</a> 
 <a style="display:inline-block;" href="https://www.transwarp.cn/en/product/argodb"><img alt="ArgoDB" src="https://gitee.com/anyline/service/raw/master/db/transwarp.ico" width="100"/>ArgoDB</a> 
 <a style="display:inline-block;" href="https://nsdb.io/"><img alt="NSDb" src="https://gitee.com/anyline/service/raw/master/db/nsdb.png" width="100"/>NSDb</a> 
 <a style="display:inline-block;" href="http://www.datajaguar.com"><img alt="JaguarDB" src="https://gitee.com/anyline/service/raw/master/db/jaguardb.png" width="100"/>JaguarDB</a> 
 <a style="display:inline-block;" href="http://wakanda.github.io/"><img alt="WakandaDB" src="https://gitee.com/anyline/service/raw/master/db/wakanda.png" width="100"/>WakandaDB</a> 
 <a style="display:inline-block;" href="https://www.transwarp.cn/en/product/stellardb"><img alt="StellarDB" src="https://gitee.com/anyline/service/raw/master/db/transwarp." width="100"/>StellarDB</a><a style="display:inline-block;" href="https://galaxybase.com/"><img alt="StellarDB" src="https://gitee.com/anyline/service/raw/master/db/stellardb.png" width="100"/>StellarDB</a>
 <a style="display:inline-block;" href="https://galaxybase.com/"><img alt="Galaxybase" src="https://gitee.com/anyline/service/raw/master/db/galaxybase.png" width="100"/>Galaxybase</a>
 <a style="display:inline-block;" href="https://newdatabase.com/"><img alt="DataFS" src="https://gitee.com/anyline/service/raw/master/db/datafs.png" width="100"/>DataFS</a>
 <a style="display:inline-block;" href="https://www.sadasengine.com/"><img alt="SadasEngine" src="https://gitee.com/anyline/service/raw/master/db/sadasengine.png" width="100"/>SadasEngine</a>
 <a style="display:inline-block;" href="https://www.hawkular.org/"><img alt="Hawkular" src="https://gitee.com/anyline/service/raw/master/db/hawkular">```markdown
<a style="display:inline-block;" href="https://hawkular.org/"><img alt="Hawkular" src="https://gitee.com/anyline/service/raw/master/db/hawkular.png" width="100"/>Hawkular</a>
<a style="display:inline-block;" href="https://bitnine.net/"><img alt="AgensGraph" src="https://gitee.com/anyline/service/raw/master/db/agens.png" width="100"/>AgensGraph</a>
<a style="display:inline-block;" href="https://www.faircom.com/products/faircomedge-iot-database"><img alt="FaircomEDGE" src="https://gitee.com/anyline/service/raw/master/db/faircom.svg" width="100"/>FaircomEDGE</a>
<a style="display:inline-block;" href="https://cachelot.io/"><img alt="Cachelot" src="https://gitee.com/anyline/service/raw/master/db/cachelot.png" width="100"/>Cachelot</a>
<a style="display:inline-block;" href="https://www.iboxdb.com/"><img alt="iBoxDB" src="https://gitee.com/anyline/service/raw/master/db/iboxdb.png" width="100"/>iBoxDB</a>
<a style="display:inline-block;" href="https://www.scaleoutsoftware.com/products/stateserver/"><img alt="StateServer" src="https://gitee.com/anyline/service/raw/master/db/scaleout.svg" width="100"/>StateServer</a>
<a style="display:inline-block;" href="https://dbmx.net/tkrzw/"><img alt="Tkrzw" src="https://gitee.com/anyline/service/raw/master/db/tkrzw.png" width="100"/>Tkrzw</a>
<a style="display:inline-block;" href="https://github.com/kashirin-alex/swc-db"><img alt="SWCDB" src="https://gitee.com/anyline/service/raw/master/db/swcdb.png" width="100"/>SWCDB</a>
<a style="display:inline-block;" href="https://ledisdb.io/"><img alt="LedisDB" src="https://gitee.com/anyline/service/raw/master/db/ledisdb.png" width="100"/>LedisDB</a>
<a style="display:inline-block;" href="https://swaydb.simer.au/"><img alt="SwayDB" src="https://gitee.com/anyline/service/raw/master/db/swaydb.png" width="100"/>SwayDB</a>
<a style="display:inline-block;" href="http://opennms.github.io/newts/"><img alt="Newts" src="https://gitee.com/anyline/service/raw/master/db/newts.png" width="100"/>Newts</a>
<a style="display:inline-block;" href="http://www.actordb.com/"><img alt="ActorDB" src="https://gitee.com/anyline/service/raw/master/db/actordb.png" width="100"/>ActorDB</a>
<a style="display:inline-block;" href="https://www.edgeintelligence.com/"><img alt="Edge Intelligence" src="https://gitee.com/anyline/service/raw/master/db/edgeintelligence.svg" width="100"/>Edge Intelligence</a>
<a style="display:inline-block;" href="http://www.smallsql.de/"><img alt="SmallSQL" src="https://gitee.com/anyline/service/raw/master/db/smallsql.png" width="100"/>SmallSQL</a>

В данном примере было заменено слово "Интеллект" на его английское эквивалентное "Edge Intelligence".SpaceTimeSpaceTime SparkleDBSparkleDB ResinCacheResinCache JethroDataJethroData BergDBBergDB CortexDBCortexDB CovenantSQLCovenantSQL DaggerDBDaggerDB EdgelessDBEdgelessDB HeliumHelium ГелийГелий HGraphDBHGraphDB JasDBJasDB```markdown RaptorDBRaptorDB RizhiyiRizhiyi searchxmlsearchxml BadgerDBBadgerDB CayleyCayley CraseCrase CrispICrispI GraphPortalGraphPortal GrinnGrinn ODABAODABA OWASPOWASP reldbreldb VoracityVoracity ZeroMQZeroMQ


Комментарии ( 0 )

Вы можете оставить комментарий после Вход в систему

Введение

Это инструмент, который представляет собой естественное решение с низким уровнем кодирования. Он позволяет создавать динамические формы и источники данных. Во время выполнения он динамически регистрирует и переключает источники данных, автоматически генерирует SQL (DDL/DML/DQL), читает и записывает метаданные, сравнивает различия в структуре баз... Развернуть Свернуть
Apache-2.0
Отмена

Обновления (12)

все

Участники

все

Недавние действия

Загрузить больше
Больше нет результатов для загрузки
1
https://api.gitlife.ru/oschina-mirror/anyline-anyline.git
git@api.gitlife.ru:oschina-mirror/anyline-anyline.git
oschina-mirror
anyline-anyline
anyline-anyline
master