I created a database in NetBeans, and I was wondering if it was possible to open it in OpenOffice or Access for easier ease of use. The database is stored locally. Thank you in advance!
Open Java DB database in OpenOffice Base or Microsoft Access
436 Views Asked by Bradley Pearl At
2
There are 2 best solutions below
2
Gord Thompson
On
In order to open the database using Microsoft Access you would need to have an ODBC driver for Derby (Java DB). Access does ODBC but it does not "do" JDBC.
However, OpenOffice/LibreOffice Base does in fact "do" JDBC so you could simply use the same JDBC driver (JAR file) that you used with NetBeans JDBC to open the database in OpenOffice/LibreOffice Base via JDBC.
Related Questions in DATABASE
- How to add the dynamic new rows from my registration form in my database?
- How to store a date/time in sqlite (or something similar to a date)
- Problem with add new attribute in table with BOTO3 on python
- When an E-R attribute should be perceived as a relationship attribute or as an entity set attribute?
- SQLAlchemy: efficient relationship loading in 3-way many-to-many relationship
- Cannot connect to Postgres Database when running Quarkus Tests with Gitlab ci
- Local or remote database with react-native?
- I want to edit a specific row in database
- How to enter data in mongodb array at specific position such that if there is only 2 data in array and I want to insert at 5, then rest data is null
- Open Web Library
- database login.py and register.py error showing 404 file not found and doesn't work
- SQL71561: SqlComputedColumn: When column selected
- Liquibase as SaaS To Configure Multiple Database as Dynamic
- Updated max input vars but table still shows error
- Spring does not map set of roles
Related Questions in MS-ACCESS
- Ctrl+' for copying from previous record in MS Access not working bilingual in Access 2016
- Updating Access Database using C# and stored procedure does not work
- SQL Left Join not including desired rows
- Published MAUI app doesn't work with access database
- Microsoft access sql query to update last record
- Syntax error in FROM clause C# and MSAccess
- sum function in a report
- Excel column datatype issues using MSADO and Access 2016 Engine driver
- Monitor Scaling Issue for Moveable Access Form using MoveWindow win32 API
- ms-access email electronic signiture
- "Make Trusted Document" warning doesn't trigger until exit, causing "Can't exit now" error
- How to compile java gdal PGEO on apple silicon MacOS to read mdb file?
- Access won't open past the splash screen
- Access, Relationship. Too complicated Syntax?
- Table Update from a form using VBA
Related Questions in DERBY
- How to get all foreign keys information from derby db?
- Hive schematool Could not find or load main class PC"
- Setup and Conncect Apache Derby Embedded Database (Java, IntelliJ)
- Derby database throws error while querying from IJ CLI tool - ERROR 42X05: Table/View 'CAL_RECURRING_ENTRY' does not exist
- How to connect to local derby database with ij when db runs on a different port, getting ERROR 08001
- "Error while creating the database: java.lang.ClassNotFoundException: org.apache.derby.jdbc.ClientDriver"
- Apache Derby CURRENT_TIMESTAMP not working in BEFORE INSERT and BEFORE UPDATE triggers at runtime
- Derby database in NetBeans localhost doesnot appear
- No suitable driver found for jdbc embedded derby database
- Unable to create Derby connection pool in Payara-6 server
- How to fix "java.sql.SQLNonTransientConnectionException: The connection was refused because the database AnimeFigurineCollection was not found. "
- Having problems setting up Jakarta EE on Netbeans using GlassFish and Derby
- Embed Apache Derby Database inside a Java project
- Unable to start hive due to no log4j2 configuration file found
- How to configure JFrog Artifactory with MySQL?
Related Questions in OPENOFFICE-BASE
- How can I edit document like doc,PDF in my browser?
- Group two tables by month and make difference
- Simple Delete Command in SQL giving error message
- How to input Cell Value from OpenOffice Calc into AS400 textfield / screen using macros?
- Looking for OpenOffice base SQL reference
- How to fix :"Not Enough Stack Memory" when trying to load() with OfficeDatabaseDocument UNO service
- FB3.0 Dateadd() throws syntax error in where section of query
- Best way to run Macro on LibreOffice or OpenOffice SubForm "Fill parameters" Event
- What is wrong with this SQL command for Apache Open Office Base?
- OpenOffice Base - Merge >200 tables into one
- Open Java DB database in OpenOffice Base or Microsoft Access
- Execute SQL query from OpenOffice macro
- OpenOffice lost connection to MySQL on open cursor
- SQL OpenOffice Base "Not a Condition in Statement"
- Transfer a data set from openoffice base to calc
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You have to use JDBC to access a Derby database programmatically.
However, there are command-line tools that access a Derby database, for example Derby's own
ijtool as well as others.Many other software packages have the ability to "call out" to a command-line tool. If either OpenOffice or Microsoft Access have the ability to "call out" to a command-line tool, you should be able to have them call out to
ij(or any other JDBC command-line tool of your choice) to access the data you want.For example, you could invoke
ij, have it run a simple script that calledSYSCS_UTIL.SYSCS_EXPORT_DATAto export some table data to a csv file, then import that csv file into OpenOffice or Microsoft Access.