HSQLDB
Author: s | 2025-04-24
HSQLDB 教程 HSQLDB - 介绍 HSQLDB - 安装 HSQLDB - 连接 HSQLDB - 数据类型 HSQLDB - 创建表 HSQLDB - 删除表 HSQLDB - 插入查询 HSQLDB - 选择查询 HSQLDB - Where 子句 HSQLDB - 更新查询 HSQLDB - %
Maven Repository: hsqldb hsqldb 1.
Provided true xmlunit xmlunit 1.3 test hsqldb hsqldb 1.8.0.10 test javax.servlet servlet-api 2.4 compile true javax.servlet jsp-api 2.0 compile true com.thoughtworks.xstream xstream 1.4.1 compile true xpp3 xpp3_min junit junit jmock jmock org.codehaus.gpars gpars 1.0.0 runtime true jline jline 1.0 compile true junit junit org.fusesource.jansi jansi 1.6 compile true org.apache.ivy ivy 2.2.0 compile true * * ch.qos.logback logback-classic 0.9.21 test log4j log4j 1.2.16 test org.slf4j jcl-over-slf4j 1.6.0 test org.apache.ant ant-testutil 1.8.3 test commons-logging commons-logging 1.1.1 test --> src/main src/test install org.apache.maven.plugins maven-antrun-plugin 1.1 org.apache.maven.plugins maven-idea-plugin 2.1 1.4 1.4 true org.apache.maven.plugins maven-compiler-plugin 2.0.2 ** true org.apache.maven.plugins maven-surefire-plugin 2.3 true org.apache.maven.plugins maven-antrun-plugin install run idea validate org.apache.maven.plugins maven-idea-plugin true true true validate clean idea POM Entry org.codehaus.groovy groovy 1.8.9DownloadIf you think the following groovy-1.8.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.Download groovy-1.8.9.jar filePreviousNextRelatedDownload groovy-1.8.5.jar fileDownload groovy-1.8.6.jar fileDownload groovy-1.8.8.jar fileDownload groovy-2.0.0.jar fileDownload groovy-2.0.1.jar file IntroductionThis tutorial will show you how you can work with embedded HSQLDB with Spring framework. This application will show you a CRUD (Create, Read, Update and Delete) operation using embedded HSQLDB.Sometimes you need to work with an in memory database when you want to demonstrate certain database centric features of an application during development phase. Such situation may be when there is no access to real database server and you want to perform test on an application on the fly using database operations then this may be very helpful.Spring supports many databases such as HSQL, H2, and Derby as default embedded databases but, we can also use an extensible third party API to plug in new embedded database and DataSource implementations.PrerequisitesJava at least 8, Spring Boot 2.3.3, HSQLDB 2.5.1, Gradle 6.5.1, Maven 3.6.3Project SetupYou can create either gradle or maven based project in your favorite IDE or tool. The name of the project is spring-embedded-hsqldb.You can use the following build.gradle script for your project if it is a gradle based project:buildscript { ext { springBootVersion = '2.3.3.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") }}plugins { id 'java-library' id 'org.springframework.boot' version "${springBootVersion}"}sourceCompatibility = 12targetCompatibility = 12repositories { mavenCentral()}dependencies { implementation("org.springframework.boot:spring-boot-starter:${springBootVersion}") implementation("org.springframework.boot:spring-boot-starter-jdbc:${springBootVersion}") implementation 'org.hsqldb:hsqldb:2.5.1'}You can use the following pom.xml file if it is a maven based project: 4.0.0 com.roytuts spring-embedded-hsqldb 0.0.1-SNAPSHOT org.springframework.boot spring-boot-starter-parent 2.3.3.RELEASE UTF-8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-jdbc org.hsqldb hsqldb 2.5.1 org.apache.maven.plugins maven-compiler-plugin 3.8.1 at least 8 at least 8 Database ConfigurationThe following class configures database beans for creating datasource.package com.roytuts.spring.embedded.hsqldb.config;import javax.sql.DataSource;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.datasource.embedded.EmbeddedDatabase;import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType;@Configurationpublic class Config { @Bean public DataSource dataSource() { EmbeddedDatabaseBuilder builder = new EmbeddedDatabaseBuilder(); EmbeddedDatabase db = builder.setType(EmbeddedDatabaseType.HSQL).addScript("classpath:table.sql") .addScript("classpath:data.sql").build(); return db; } @Bean public JdbcTemplate jdbcTemplate(DataSource dataSource) { JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource); return jdbcTemplate; }}As I am using in-memory database, so I did not need to configure any database connection details. The default values will be used for connection details.I am using SQL scripts to create a table and storing some sample data. The SQL scripts are kept under src/main/resources folder.table.sqlDROP TABLE CUSTOMER IF EXISTS;CREATE TABLE CUSTOMER ( CUSTOMER_ID integer identity primary key, CUSTOMER_NAME varchar(50) not null, CUSTOMER_ADDRESS varchar(255), CUSTOMER_CITY varchar(50) not null, CUSTOMER_STATE varchar(50) not null, CUSTOMER_ZIP_POSTAL varchar(30) not null);data.sqlINSERT INTO CUSTOMER VALUES(1,'Sumit Ghosh','Garfa','Kolkata','West Bengal','700085')INSERT INTO CUSTOMER VALUES(2,'Gourab Guha','Garia','Kolkata','West Bengal','700145')INSERT INTO CUSTOMER VALUES(3,'Debina Guha','Kestopur','Kolkata','West Bengal','700185')INSERT INTO CUSTOMER VALUES(4,'Debabrata Poddar','Birati','Kolkata','West Bengal','700285')INSERT INTO CUSTOMER VALUES(5,'Amit Dharmale','Thane','Mumbai','Maharastra','400140')Model ClassI have created a model class for mapping Java fields to database table columns.package com.roytuts.spring.embedded.hsqldb.model;public class Customer { private Long customerId; private String customerName; private String customerAddress; private String customerCity; private String customerState; private String customerZip; // getters and setters @Override public String toString() { return "[ Customer Id : " + customerId + ", CustomerGitHub - ryenus/hsqldb: Unofficial mirror of HSQLDB
Team SQL Uniform is a database comparison and SQL query software. It is a database client, graphical ... various types regarding query, data comparison, export (convert), import. It supplies the databases with helper applications possessing ... type: Freeware categories: sql, sql uniform, sqluniform, database comparison, database compare, data comparison, data compare, query, export, data browser, java, jdbc, driver, database, ibm, db2, microsoft, sql server, oracle, sybase, mysql, postgresql, interbase, odbc View Details Download Invantive Query Tool 2014R1FR download by Invantive Software B.V. ... data warehouse and databases running on MySQL, Oracle, SQL Server, Teradata, IBM DB2/UDB or elsewhere. This enables you to store, organize ... matter where the data has been stored: Microsoft SQL Server, Oracle, MySQL, Teradata, IBM DB2/UDB or elsewhere. ... View Details Download Sybase iAnywhere IBM DB2 Import, Export & Convert Software 7.0 download by Sobolsoft ... tables to and from Sybase iAnywhere and IBM DB2 databases. The user simply enters the login information ... With this time saving software, users with no SQL knowledge can transfer large numbers of tables quickly ... View Details Download RazorSQL 10.5.3 download by Richardson Software, LLC RazorSQL is a SQL database query tool, SQL editor, database browser, administration tool and database management ... includes built in connection capabilities for Access, Cassandra, DB2, Derby, DynamoDB, Firebird, FrontBase, HSQLDB, Informix, Microsoft SQL ... type: Shareware ($129.00) categories: sql, database, query, tool, editor, client, gui, front end, database navigator, database browser, ODBC, JDBC, Oracle, MySQL, SQL Server, DB2, PostgreSQL, Sybase, HSQLDB, SQLite, Firebird,. HSQLDB 教程 HSQLDB - 介绍 HSQLDB - 安装 HSQLDB - 连接 HSQLDB - 数据类型 HSQLDB - 创建表 HSQLDB - 删除表 HSQLDB - 插入查询 HSQLDB - 选择查询 HSQLDB - Where 子句 HSQLDB - 更新查询 HSQLDB - % hsqldb-user 1. Re: [Hsqldb-user] Where to download HSQLDB JDBC cconn hsqldb-us Fred Toussi 2. Re: [Hsqldb-user] Where to download HSQLDB JDBC cconnDownloading File /hsqldb/hsqldb_2_5/hsqldb-2.5.1.zip
H2 es un sistema de gestión de bases de datos relacionales escrito en Java. Puede integrarse en aplicaciones Java o ejecutarse en modo cliente-servidor.El software está disponible como software de código abierto con licencia pública de Mozilla 2.0 o con la licencia pública original de Eclipse.HistoriaEl desarrollo del motor de base de datos H2 comenzó en mayo de 2004 y se publicó por primera vez en diciembre de 2005. El motor de base de datos fue escrito por Thomas Mueller. También desarrolló el motor de base de datos de Java Hypersonic SQL. En 2001, se detuvo el proyecto Hypersonic SQL y se formó el grupo HSQLDB para continuar trabajando en el código de Hypersonic SQL. El nombre H2 significa Hypersonic 2, sin embargo, H2 no comparte código con Hypersonic SQL o HSQLDB. H2 se creó desde cero.Características principalesUso de SQLSe admite un subconjunto del estándar SQL (lenguaje de consulta estructurado). Las principales API de programación son SQL y JDBC, sin embargo, la base de datos también admite el uso del controlador ODBC de PostgreSQL al actuar como un servidor PostgreSQL.Tipos de tablasEs posible crear tanto tablas en memoria como tablas basadas en disco. Las tablas pueden ser persistentes o temporales. Los tipos de índice son tabla hash y árbol para las tablas en memoria, y árbol b para las tablas basadas en disco. Todas las operaciones de manipulación de datos son transaccionales. Se implementan el bloqueo a nivel de tabla y el control de concurrencia de múltiples versiones. También se admite el protocolo de confirmación de 2 fases, pero no se implementa ninguna API estándar para transacciones distribuidas.Características de seguridadLas características de seguridad de la base de datos son: derechos de acceso basados en roles, cifrado de contraseñas mediante SHA-256 y datos mediante AES o el algoritmo de cifrado Tiny, Pros:Free and open-source with decent functionality for simple databases Compatible with various external database systems like MySQL and PostgreSQLBasic tools for creating tables, forms, queries, and reportsCons:Dated and somewhat clunky interface No dedicated support for MacOS drivers requiring third-party solutions for connectivityLimited customization and formatting options for forms and reports Requires installing the entire LibreOffice suiteNo technical supportIf you want to create databases on your Mac for free, then LibreOffice Base is one of the best database software for Macs we’ve tried.LibreOffice Base is a free tool within the LibreOffice suite which is a popular free alternative to Microsoft Office for Mac.The Base app allows you to create, manage, and maintain databases on your Mac desktop.Unlike many database tools, LibreOffice Base is not Cloud based so everything is stored offline on your Mac.Here we take a closer look at its strengths and weaknesses by showing you how to create your first database with it for free step-by-step.Setup and Initial ImpressionsYou have to install the entire LibreOffice suite of tools which is great if you want a free Office suite but not ideal if all you want is to use one part of it such as Base. There is both a native Intel and Apple Silicon version of the suite so make sure you download the right one. Source: MacHow2The download is completely free although the LibreOffice Foundation encourages donations if you like and regularly use the suite. Note that there is a version available of LibreOffice on the Mac App Store but it’s not free. The advantage of it however is that it does not require the added installation of the Java JDK (more on this below) as Java based apps are not allowed on the App Store. After installing LibreOffice and launching Base, I chose to create a new database. The initial setup offers options for linking to external databases like MySQL or PostgreSQL, or creating an embedded database using HSQLDB. Base also supports Adabas D and MS Access databases. For this trial, I opted for an embedded HSQLDB database, which is simpler to start with and requires noDownloading File /hsqldb/hsqldb_2_3/hsqldb-2.3.4.zip
Listed below are the main features for RazorSQL. The RazorSQL user interface provides users with the ability to browse database objects and structures, execute SQL queries and statements, search database objects and data, edit database tables, create and alter database objects, and much more.Database Specific Features - Detailed information on the features offered for each database such as MySQL, Oracle, PostgreSQL, DB2, MS SQL Server, Salesforce, Sybase, SQLite, Athena, Aurora, BigQuery, Cassandra, Derby, Druid, DynamoDB, Firebird, H2, Hive, HSQLDB, Informix, Ingres, Interbase, Cache, kdb+, MariaDB, MS Access, MongoDB, MonetDB, Pervasive, Redshift, SimpleDB, Snowflake, SQL Anywhere, SQL Azure, Teradata, Vertica, and more.Advanced Connection Features - The various ways RazorSQL can connect to databases. Built-in Database - Features of the built-in relational database included in RazorSQL. Advanced Connection Features Built-in support for Athena, Aurora (MySQL and PostgreSQL), BigQuery, Cassandra, Couchbase, DB2, Derby / JavaDB, Druid, DynamoDB, Firebird, FrontBase, Greenplum, H2, HBase, Hive, HSQLDB, Informix, Ingres, Interbase, Intersystems Cache, kdb+, MariaDB, MS Access, MongoDB, MonetDB, MySQL, OpenBase, Oracle, Pervasive, PostgreSQL, Redshift, Salesforce, SimpleDB, Snowflake, SQLite, SQL Server, SQL Azure, Sybase Adaptive Server Enterprise, Sybase IQ, Sybase SQL Anywhere, Teradata, Vertica, and VoltDB. Also can connect to any database that supports JDBC or ODBC (Windows only). MySQL, PostgreSQL, and MS SQL Server PHP bridges for connecting to MySQL, PostgreSQL, and SQL Server databases via PHP. Allows remote access to MySQL, PostgreSQL or SQL Server databases running behind PHP enabled web servers A MS SQL Server ASP bridge for connecting to SQL Server databases via ASP. Allows remote access to SQL Server databases running behind ASP enabled web servers A RazorSQL JDBC Bridge for connecting to databases via a JEE/J2EE Application Server or Servlet Container Database and SQL Tools Create, Alter, and Drop Tables and Views Copy / Backup Tables *Create and Drop Indexes and Sequences *Create and Drop Stored Procedures, Functions, Packages, and Triggers *Create and Drop Databases and Users A Multi-Table Database Data Search Tool A Tool to Search for Database Objects Edit Table Tool *Edit Stored Procedures, Functions, Packages, and Triggers *Database Conversion tools for converting database tables from one type to another Describe Tables and Views Generate DDL Tool for generating table, view, and index DDL. View contents of Tables and Views *View contents of Stored Procedures, Functions, Packages, and Triggers SQL Query Builder for Select, Insert, Update, and Delete Statements Export Data in text, HTML, XML, Excel, delimited file formatDownloading File /hsqldb/hsqldb_2_2/hsqldb-2.2.9.zip
Proper logging.Reformatted code and cleaned up imports.Removed all calls to assert.Removed various forms of dead code and stale configurations.Removed calls to commit() during Loader operations.Refactored Worker and Loader usage of Connection objects and cleaned up transaction handling.Introduced Dependabot to keep Maven dependencies up to date.Simplified output flags by removing most of them, generally leaving the reporting functionality enabled by default.Provided an alternate Catalog that can be populated directly from the configured Benchmark database. The old catalog was proxied through HSQLDB -- this remains an option for DBMSes that may have incomplete catalog support.Citing This RepositoryIf you use this repository in an academic paper, please cite this repository:D. E. Difallah, A. Pavlo, C. Curino, and P. Cudré-Mauroux, "OLTP-Bench: An Extensible Testbed for Benchmarking Relational Databases," PVLDB, vol. 7, iss. 4, pp. 277-288, 2013.The BibTeX is provided below for convenience.@article{DifallahPCC13, author = {Djellel Eddine Difallah and Andrew Pavlo and Carlo Curino and Philippe Cudr{'e}-Mauroux}, title = {OLTP-Bench: An Extensible Testbed for Benchmarking Relational Databases}, journal = {PVLDB}, volume = {7}, number = {4}, year = {2013}, pages = {277--288}, url = {. HSQLDB 教程 HSQLDB - 介绍 HSQLDB - 安装 HSQLDB - 连接 HSQLDB - 数据类型 HSQLDB - 创建表 HSQLDB - 删除表 HSQLDB - 插入查询 HSQLDB - 选择查询 HSQLDB - Where 子句 HSQLDB - 更新查询 HSQLDB - % hsqldb-user 1. Re: [Hsqldb-user] Where to download HSQLDB JDBC cconn hsqldb-us Fred Toussi 2. Re: [Hsqldb-user] Where to download HSQLDB JDBC cconnDownload hsqldb-1.8.0.1-sources.jar : hsqldb h - Java2s
RazorSQL allows you to query, update, navigate, and manage all major databases from one database tool. With RazorSQL, a SQL query tool, SQL editor, and database navigator, you can run SQL scripts, visually edit, create, alter, and view tables, import and export data, build queries with a query builder tool, and navigate databases with the database navigator. It even comes with a built-in relational database engine that requires no configuration.The SQL programming editor has syntax highlighting for SQL, PL/SQL, TransactSQL, SQL PL, and Java, automatic function/method lookup, automatic column lookup, key ahead, built-in and customizable templates, multi-tabular display of query results, query logging, and many other features including a tool to call stored procedures and a tool to compare table and/or query data.RazorSQL has been tested with virtually all popular databases, and includes built in driver support for Cassandra, DB2, Derby, DynamoDB, Firebird, FrontBase, Hive, HSQLDB, Informix, MongoDB, MySQL, OpenBase, Oracle, PostgreSQL, Redshift, Salesforce, SimpleDB, SQLite, SQL Azure, SQL Anywhere, SQL Server, Sybase, Teradata, and others. What’s New Version 8.0.6: MySQL: Automatic handling of timezone errors for new MySQL driver Mac: Editor: Decreased mouse drag sensitivity to allow double and triple clicks to highlight words and lines appropriately Local documentation updates Compatibility OS X 10.7 or later, 64-bit processor Screenshots Download NowComments
Provided true xmlunit xmlunit 1.3 test hsqldb hsqldb 1.8.0.10 test javax.servlet servlet-api 2.4 compile true javax.servlet jsp-api 2.0 compile true com.thoughtworks.xstream xstream 1.4.1 compile true xpp3 xpp3_min junit junit jmock jmock org.codehaus.gpars gpars 1.0.0 runtime true jline jline 1.0 compile true junit junit org.fusesource.jansi jansi 1.6 compile true org.apache.ivy ivy 2.2.0 compile true * * ch.qos.logback logback-classic 0.9.21 test log4j log4j 1.2.16 test org.slf4j jcl-over-slf4j 1.6.0 test org.apache.ant ant-testutil 1.8.3 test commons-logging commons-logging 1.1.1 test --> src/main src/test install org.apache.maven.plugins maven-antrun-plugin 1.1 org.apache.maven.plugins maven-idea-plugin 2.1 1.4 1.4 true org.apache.maven.plugins maven-compiler-plugin 2.0.2 ** true org.apache.maven.plugins maven-surefire-plugin 2.3 true org.apache.maven.plugins maven-antrun-plugin install run idea validate org.apache.maven.plugins maven-idea-plugin true true true validate clean idea POM Entry org.codehaus.groovy groovy 1.8.9DownloadIf you think the following groovy-1.8.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.Download groovy-1.8.9.jar filePreviousNextRelatedDownload groovy-1.8.5.jar fileDownload groovy-1.8.6.jar fileDownload groovy-1.8.8.jar fileDownload groovy-2.0.0.jar fileDownload groovy-2.0.1.jar file
2025-04-07IntroductionThis tutorial will show you how you can work with embedded HSQLDB with Spring framework. This application will show you a CRUD (Create, Read, Update and Delete) operation using embedded HSQLDB.Sometimes you need to work with an in memory database when you want to demonstrate certain database centric features of an application during development phase. Such situation may be when there is no access to real database server and you want to perform test on an application on the fly using database operations then this may be very helpful.Spring supports many databases such as HSQL, H2, and Derby as default embedded databases but, we can also use an extensible third party API to plug in new embedded database and DataSource implementations.PrerequisitesJava at least 8, Spring Boot 2.3.3, HSQLDB 2.5.1, Gradle 6.5.1, Maven 3.6.3Project SetupYou can create either gradle or maven based project in your favorite IDE or tool. The name of the project is spring-embedded-hsqldb.You can use the following build.gradle script for your project if it is a gradle based project:buildscript { ext { springBootVersion = '2.3.3.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") }}plugins { id 'java-library' id 'org.springframework.boot' version "${springBootVersion}"}sourceCompatibility = 12targetCompatibility = 12repositories { mavenCentral()}dependencies { implementation("org.springframework.boot:spring-boot-starter:${springBootVersion}") implementation("org.springframework.boot:spring-boot-starter-jdbc:${springBootVersion}") implementation 'org.hsqldb:hsqldb:2.5.1'}You can use the following pom.xml file if it is a maven based project: 4.0.0 com.roytuts spring-embedded-hsqldb 0.0.1-SNAPSHOT org.springframework.boot spring-boot-starter-parent 2.3.3.RELEASE UTF-8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-jdbc org.hsqldb hsqldb 2.5.1 org.apache.maven.plugins maven-compiler-plugin 3.8.1 at least 8 at least 8 Database ConfigurationThe following class configures database beans for creating datasource.package com.roytuts.spring.embedded.hsqldb.config;import javax.sql.DataSource;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.datasource.embedded.EmbeddedDatabase;import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType;@Configurationpublic class Config { @Bean public DataSource dataSource() { EmbeddedDatabaseBuilder builder = new EmbeddedDatabaseBuilder(); EmbeddedDatabase db = builder.setType(EmbeddedDatabaseType.HSQL).addScript("classpath:table.sql") .addScript("classpath:data.sql").build(); return db; } @Bean public JdbcTemplate jdbcTemplate(DataSource dataSource) { JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource); return jdbcTemplate; }}As I am using in-memory database, so I did not need to configure any database connection details. The default values will be used for connection details.I am using SQL scripts to create a table and storing some sample data. The SQL scripts are kept under src/main/resources folder.table.sqlDROP TABLE CUSTOMER IF EXISTS;CREATE TABLE CUSTOMER ( CUSTOMER_ID integer identity primary key, CUSTOMER_NAME varchar(50) not null, CUSTOMER_ADDRESS varchar(255), CUSTOMER_CITY varchar(50) not null, CUSTOMER_STATE varchar(50) not null, CUSTOMER_ZIP_POSTAL varchar(30) not null);data.sqlINSERT INTO CUSTOMER VALUES(1,'Sumit Ghosh','Garfa','Kolkata','West Bengal','700085')INSERT INTO CUSTOMER VALUES(2,'Gourab Guha','Garia','Kolkata','West Bengal','700145')INSERT INTO CUSTOMER VALUES(3,'Debina Guha','Kestopur','Kolkata','West Bengal','700185')INSERT INTO CUSTOMER VALUES(4,'Debabrata Poddar','Birati','Kolkata','West Bengal','700285')INSERT INTO CUSTOMER VALUES(5,'Amit Dharmale','Thane','Mumbai','Maharastra','400140')Model ClassI have created a model class for mapping Java fields to database table columns.package com.roytuts.spring.embedded.hsqldb.model;public class Customer { private Long customerId; private String customerName; private String customerAddress; private String customerCity; private String customerState; private String customerZip; // getters and setters @Override public String toString() { return "[ Customer Id : " + customerId + ", Customer
2025-04-23Team SQL Uniform is a database comparison and SQL query software. It is a database client, graphical ... various types regarding query, data comparison, export (convert), import. It supplies the databases with helper applications possessing ... type: Freeware categories: sql, sql uniform, sqluniform, database comparison, database compare, data comparison, data compare, query, export, data browser, java, jdbc, driver, database, ibm, db2, microsoft, sql server, oracle, sybase, mysql, postgresql, interbase, odbc View Details Download Invantive Query Tool 2014R1FR download by Invantive Software B.V. ... data warehouse and databases running on MySQL, Oracle, SQL Server, Teradata, IBM DB2/UDB or elsewhere. This enables you to store, organize ... matter where the data has been stored: Microsoft SQL Server, Oracle, MySQL, Teradata, IBM DB2/UDB or elsewhere. ... View Details Download Sybase iAnywhere IBM DB2 Import, Export & Convert Software 7.0 download by Sobolsoft ... tables to and from Sybase iAnywhere and IBM DB2 databases. The user simply enters the login information ... With this time saving software, users with no SQL knowledge can transfer large numbers of tables quickly ... View Details Download RazorSQL 10.5.3 download by Richardson Software, LLC RazorSQL is a SQL database query tool, SQL editor, database browser, administration tool and database management ... includes built in connection capabilities for Access, Cassandra, DB2, Derby, DynamoDB, Firebird, FrontBase, HSQLDB, Informix, Microsoft SQL ... type: Shareware ($129.00) categories: sql, database, query, tool, editor, client, gui, front end, database navigator, database browser, ODBC, JDBC, Oracle, MySQL, SQL Server, DB2, PostgreSQL, Sybase, HSQLDB, SQLite, Firebird,
2025-04-13H2 es un sistema de gestión de bases de datos relacionales escrito en Java. Puede integrarse en aplicaciones Java o ejecutarse en modo cliente-servidor.El software está disponible como software de código abierto con licencia pública de Mozilla 2.0 o con la licencia pública original de Eclipse.HistoriaEl desarrollo del motor de base de datos H2 comenzó en mayo de 2004 y se publicó por primera vez en diciembre de 2005. El motor de base de datos fue escrito por Thomas Mueller. También desarrolló el motor de base de datos de Java Hypersonic SQL. En 2001, se detuvo el proyecto Hypersonic SQL y se formó el grupo HSQLDB para continuar trabajando en el código de Hypersonic SQL. El nombre H2 significa Hypersonic 2, sin embargo, H2 no comparte código con Hypersonic SQL o HSQLDB. H2 se creó desde cero.Características principalesUso de SQLSe admite un subconjunto del estándar SQL (lenguaje de consulta estructurado). Las principales API de programación son SQL y JDBC, sin embargo, la base de datos también admite el uso del controlador ODBC de PostgreSQL al actuar como un servidor PostgreSQL.Tipos de tablasEs posible crear tanto tablas en memoria como tablas basadas en disco. Las tablas pueden ser persistentes o temporales. Los tipos de índice son tabla hash y árbol para las tablas en memoria, y árbol b para las tablas basadas en disco. Todas las operaciones de manipulación de datos son transaccionales. Se implementan el bloqueo a nivel de tabla y el control de concurrencia de múltiples versiones. También se admite el protocolo de confirmación de 2 fases, pero no se implementa ninguna API estándar para transacciones distribuidas.Características de seguridadLas características de seguridad de la base de datos son: derechos de acceso basados en roles, cifrado de contraseñas mediante SHA-256 y datos mediante AES o el algoritmo de cifrado Tiny,
2025-04-20Pros:Free and open-source with decent functionality for simple databases Compatible with various external database systems like MySQL and PostgreSQLBasic tools for creating tables, forms, queries, and reportsCons:Dated and somewhat clunky interface No dedicated support for MacOS drivers requiring third-party solutions for connectivityLimited customization and formatting options for forms and reports Requires installing the entire LibreOffice suiteNo technical supportIf you want to create databases on your Mac for free, then LibreOffice Base is one of the best database software for Macs we’ve tried.LibreOffice Base is a free tool within the LibreOffice suite which is a popular free alternative to Microsoft Office for Mac.The Base app allows you to create, manage, and maintain databases on your Mac desktop.Unlike many database tools, LibreOffice Base is not Cloud based so everything is stored offline on your Mac.Here we take a closer look at its strengths and weaknesses by showing you how to create your first database with it for free step-by-step.Setup and Initial ImpressionsYou have to install the entire LibreOffice suite of tools which is great if you want a free Office suite but not ideal if all you want is to use one part of it such as Base. There is both a native Intel and Apple Silicon version of the suite so make sure you download the right one. Source: MacHow2The download is completely free although the LibreOffice Foundation encourages donations if you like and regularly use the suite. Note that there is a version available of LibreOffice on the Mac App Store but it’s not free. The advantage of it however is that it does not require the added installation of the Java JDK (more on this below) as Java based apps are not allowed on the App Store. After installing LibreOffice and launching Base, I chose to create a new database. The initial setup offers options for linking to external databases like MySQL or PostgreSQL, or creating an embedded database using HSQLDB. Base also supports Adabas D and MS Access databases. For this trial, I opted for an embedded HSQLDB database, which is simpler to start with and requires no
2025-04-05Listed below are the main features for RazorSQL. The RazorSQL user interface provides users with the ability to browse database objects and structures, execute SQL queries and statements, search database objects and data, edit database tables, create and alter database objects, and much more.Database Specific Features - Detailed information on the features offered for each database such as MySQL, Oracle, PostgreSQL, DB2, MS SQL Server, Salesforce, Sybase, SQLite, Athena, Aurora, BigQuery, Cassandra, Derby, Druid, DynamoDB, Firebird, H2, Hive, HSQLDB, Informix, Ingres, Interbase, Cache, kdb+, MariaDB, MS Access, MongoDB, MonetDB, Pervasive, Redshift, SimpleDB, Snowflake, SQL Anywhere, SQL Azure, Teradata, Vertica, and more.Advanced Connection Features - The various ways RazorSQL can connect to databases. Built-in Database - Features of the built-in relational database included in RazorSQL. Advanced Connection Features Built-in support for Athena, Aurora (MySQL and PostgreSQL), BigQuery, Cassandra, Couchbase, DB2, Derby / JavaDB, Druid, DynamoDB, Firebird, FrontBase, Greenplum, H2, HBase, Hive, HSQLDB, Informix, Ingres, Interbase, Intersystems Cache, kdb+, MariaDB, MS Access, MongoDB, MonetDB, MySQL, OpenBase, Oracle, Pervasive, PostgreSQL, Redshift, Salesforce, SimpleDB, Snowflake, SQLite, SQL Server, SQL Azure, Sybase Adaptive Server Enterprise, Sybase IQ, Sybase SQL Anywhere, Teradata, Vertica, and VoltDB. Also can connect to any database that supports JDBC or ODBC (Windows only). MySQL, PostgreSQL, and MS SQL Server PHP bridges for connecting to MySQL, PostgreSQL, and SQL Server databases via PHP. Allows remote access to MySQL, PostgreSQL or SQL Server databases running behind PHP enabled web servers A MS SQL Server ASP bridge for connecting to SQL Server databases via ASP. Allows remote access to SQL Server databases running behind ASP enabled web servers A RazorSQL JDBC Bridge for connecting to databases via a JEE/J2EE Application Server or Servlet Container Database and SQL Tools Create, Alter, and Drop Tables and Views Copy / Backup Tables *Create and Drop Indexes and Sequences *Create and Drop Stored Procedures, Functions, Packages, and Triggers *Create and Drop Databases and Users A Multi-Table Database Data Search Tool A Tool to Search for Database Objects Edit Table Tool *Edit Stored Procedures, Functions, Packages, and Triggers *Database Conversion tools for converting database tables from one type to another Describe Tables and Views Generate DDL Tool for generating table, view, and index DDL. View contents of Tables and Views *View contents of Stored Procedures, Functions, Packages, and Triggers SQL Query Builder for Select, Insert, Update, and Delete Statements Export Data in text, HTML, XML, Excel, delimited file format
2025-04-05