Tagged Questions
The ddlutils tag has no wiki summary.
2
votes
2answers
55 views
DdlUtils: defering insertion
in order to migrate a db from oracle to mysql i am using ddlutils. Migrating the schema works for my purposes, but inserting the data fails due to missing rows. The following excerpt from the log file ...
2
votes
2answers
266 views
Java library for reading database schema
I'm looking for a lightweight, open source, more or less cross-database Java library that would allow me to read off metainformation on columns, tables and integrity constraints given a DataSource.
1
vote
1answer
266 views
Problem using DdlUtils with Oracle 11.1.0
This question is similar to question Problem with ddlutils in Oracle 10g... Since my problem is (or at least i think it is) slightly different to the question mentioned, i post a new one.
I am using ...
1
vote
2answers
929 views
Easiest way to obtain database metadata in Java?
I'm familiar with the java.sql.DatabaseMetaData interface, but I find it quite clunky to use. For example, in order to find out the table names, you have to call getTables and loop through the ...
0
votes
0answers
94 views
Problem in reading MySQL column metadata using org.apache.ddlutils
I'm using org.apache.ddlutils package for reading database metadata.
I've written something like following:
Platform platform = PlatformFactory.createNewPlatformInstance(dataSource);
...
0
votes
2answers
258 views
Problem in using org.apache.ddlutils.DdlUtilsException
I'm trying to use the org.apache.ddlutils package for reading database metadata.
I've written the following method:
public static void readMetaData(DataSource dataSource) throws DdlUtilsException{
...
0
votes
1answer
240 views
Problem with ddlutils in Oracle 10g
I am not able to read oracle database with ddlutils and getting following error:
java.lang.NullPointerException
at org.apache.ddlutils.platform.JdbcModelReader.readTable(JdbcModelReader.java:573)
...
0
votes
2answers
238 views
DDLUtils and autoincrement values
When trying to use DDLUtils it always seems to take over the id values for the columns that are set to autoincrement. How can I prevent this?
For example, I have a Dogs table with a column called ...