2000-04-03 01:08:30 +08:00
|
|
|
/* MDB Tools - A library for reading MS Access database files
|
|
|
|
* Copyright (C) 2000 Brian Bruns
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2005-01-15 13:02:04 +08:00
|
|
|
#ifdef JAVA
|
|
|
|
#include "javadefines.h"
|
|
|
|
#define MdbBackendType_STRUCT_ELEMENT(a,b,c,d) new MdbBackendType(a,b,c,d)
|
|
|
|
#else
|
|
|
|
#define MdbBackendType_STRUCT_ELEMENT(a,b,c,d) {a,b,c,d}
|
2000-04-03 01:08:30 +08:00
|
|
|
/*
|
|
|
|
** functions to deal with different backend database engines
|
|
|
|
*/
|
2005-01-15 13:02:04 +08:00
|
|
|
#
|
2000-04-03 01:08:30 +08:00
|
|
|
#include "mdbtools.h"
|
|
|
|
|
2003-01-29 07:51:06 +08:00
|
|
|
#ifdef DMALLOC
|
|
|
|
#include "dmalloc.h"
|
|
|
|
#endif
|
|
|
|
|
2005-01-15 13:02:04 +08:00
|
|
|
#endif /* JAVA */
|
|
|
|
|
2004-06-11 21:56:39 +08:00
|
|
|
static int is_init;
|
2005-04-29 11:08:12 +08:00
|
|
|
GHashTable *mdb_backends;
|
2004-02-09 05:54:20 +08:00
|
|
|
|
2000-04-03 01:08:30 +08:00
|
|
|
/* Access data types */
|
2004-06-11 21:56:39 +08:00
|
|
|
static MdbBackendType mdb_access_types[] = {
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Unknown 0x00", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Boolean", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Byte", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Integer", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Long Integer", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Currency", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Single", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Double", 0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("DateTime (Short)", 0,0,1),
|
2010-06-18 10:12:44 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Binary", 0,0,0),
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Text", 1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("OLE", 1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Memo/Hyperlink",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Unknown 0x0d",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Unknown 0x0e",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Replication ID",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Numeric",1,1,0)
|
2004-01-06 08:42:07 +08:00
|
|
|
};
|
2000-04-03 01:08:30 +08:00
|
|
|
|
2000-04-07 09:20:41 +08:00
|
|
|
/* Oracle data types */
|
2004-06-11 21:56:39 +08:00
|
|
|
static MdbBackendType mdb_oracle_types[] = {
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x00",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("FLOAT",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("FLOAT",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("DATE",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x09",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("VARCHAR2",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("BLOB",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("CLOB",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x0d",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x0e",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
|
2004-01-06 08:42:07 +08:00
|
|
|
};
|
2000-04-03 01:08:30 +08:00
|
|
|
|
2000-04-07 09:20:41 +08:00
|
|
|
/* Sybase/MSSQL data types */
|
2004-06-11 21:56:39 +08:00
|
|
|
static MdbBackendType mdb_sybase_types[] = {
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x00",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("bit",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("char",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("smallint",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("money",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("real",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("smalldatetime",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x09",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("varbinary",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("text",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x0d",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x0e",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Sybase_Replication ID",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("numeric",1,1,0),
|
2004-01-06 08:42:07 +08:00
|
|
|
};
|
2000-04-03 01:08:30 +08:00
|
|
|
|
2000-04-07 09:20:41 +08:00
|
|
|
/* Postgres data types */
|
2004-06-11 21:56:39 +08:00
|
|
|
static MdbBackendType mdb_postgres_types[] = {
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x00",0,0,0),
|
2010-06-18 07:02:28 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("BOOL",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("SMALLINT",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("INTEGER",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("INTEGER",0,0,0), /* bigint */
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("NUMERIC(15,2)",0,0,0), /* money deprecated ? */
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("REAL",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("DOUBLE PRECISION",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("TIMESTAMP WITHOUT TIME ZONE",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("BYTEA",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("VARCHAR",1,0,1),
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x0b",0,0,0),
|
2010-06-18 07:02:28 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("TEXT",0,0,0),
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x0d",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x0e",0,0,0),
|
2010-06-18 07:02:28 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("UUID",0,0,0),
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x10",0,0,0),
|
2004-01-06 08:42:07 +08:00
|
|
|
};
|
2004-02-06 10:34:20 +08:00
|
|
|
/* MySQL data types */
|
2004-06-11 21:56:39 +08:00
|
|
|
static MdbBackendType mdb_mysql_types[] = {
|
2005-01-15 13:02:04 +08:00
|
|
|
MdbBackendType_STRUCT_ELEMENT("Text",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("char",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("date",0,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("text",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("blob",0,0,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("text",1,0,1),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("numeric",1,1,0),
|
|
|
|
MdbBackendType_STRUCT_ELEMENT("numeric",1,1,0),
|
2004-02-06 10:34:20 +08:00
|
|
|
};
|
2005-01-15 13:02:04 +08:00
|
|
|
#ifndef JAVA
|
2004-06-22 12:27:42 +08:00
|
|
|
static gboolean mdb_drop_backend(gpointer key, gpointer value, gpointer data);
|
2000-04-23 05:34:32 +08:00
|
|
|
|
2010-06-21 04:27:42 +08:00
|
|
|
char* sanitize_name(const char* str)
|
|
|
|
{
|
|
|
|
char *result = malloc(256);
|
|
|
|
char *p = result;
|
|
|
|
|
|
|
|
if (*str) {
|
|
|
|
*p = isalpha(*str) ? *str : '_';
|
|
|
|
p++;
|
2010-08-04 08:04:29 +08:00
|
|
|
if (!isdigit(*str)) /* if it was a digit, keep it */
|
2010-06-21 04:27:42 +08:00
|
|
|
str++;
|
|
|
|
}
|
2010-08-04 08:04:29 +08:00
|
|
|
|
2010-06-21 04:27:42 +08:00
|
|
|
while (*str) {
|
|
|
|
*p = isalnum(*str) ? *str : '_';
|
|
|
|
p++;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = 0;
|
2010-08-04 08:04:29 +08:00
|
|
|
|
2010-06-21 04:27:42 +08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* quote_name_with_brackets(const char* name)
|
|
|
|
{
|
|
|
|
char *result = malloc(strlen(name)+3);
|
|
|
|
sprintf(result, "[%s]", name);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* quote_name_with_dquotes(const char* name)
|
|
|
|
{
|
|
|
|
char *result = malloc(2*strlen(name)+3);
|
|
|
|
char *p = result;
|
|
|
|
*p++ = '"';
|
|
|
|
while (*name) {
|
|
|
|
*p++ = *name;
|
|
|
|
if (*name == '"')
|
|
|
|
*p++ = *name; /* double it */
|
|
|
|
name ++;
|
|
|
|
}
|
|
|
|
*p++ = '"';
|
|
|
|
*p++ = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* quote_name_with_rquotes(const char* name)
|
|
|
|
{
|
|
|
|
return (char*)g_strconcat("`", name, "`", NULL);
|
|
|
|
}
|
|
|
|
|
2000-04-03 01:08:30 +08:00
|
|
|
char *mdb_get_coltype_string(MdbBackend *backend, int col_type)
|
|
|
|
{
|
2004-01-10 09:52:56 +08:00
|
|
|
static char buf[16];
|
2003-01-21 00:04:24 +08:00
|
|
|
|
2004-01-06 08:42:07 +08:00
|
|
|
if (col_type > 0x10 ) {
|
|
|
|
// return NULL;
|
2004-01-10 09:52:56 +08:00
|
|
|
snprintf(buf,sizeof(buf), "type %04x", col_type);
|
2004-01-06 08:42:07 +08:00
|
|
|
return buf;
|
|
|
|
} else {
|
|
|
|
return backend->types_table[col_type].name;
|
|
|
|
}
|
2000-04-03 01:08:30 +08:00
|
|
|
}
|
2004-01-06 08:42:07 +08:00
|
|
|
|
|
|
|
int mdb_coltype_takes_length(MdbBackend *backend, int col_type)
|
|
|
|
{
|
2004-06-11 21:56:39 +08:00
|
|
|
return backend->types_table[col_type].needs_length;
|
2004-01-06 08:42:07 +08:00
|
|
|
}
|
|
|
|
|
2004-06-22 12:27:42 +08:00
|
|
|
/**
|
|
|
|
* mdb_init_backends
|
|
|
|
*
|
|
|
|
* Initializes the mdb_backends hash and loads the builtin backends.
|
|
|
|
* Use mdb_remove_backends() to destroy this hash when done.
|
|
|
|
*/
|
2000-04-03 01:08:30 +08:00
|
|
|
void mdb_init_backends()
|
|
|
|
{
|
|
|
|
mdb_backends = g_hash_table_new(g_str_hash, g_str_equal);
|
|
|
|
|
2010-06-21 04:27:42 +08:00
|
|
|
mdb_register_backend(mdb_access_types, quote_name_with_brackets, "access");
|
|
|
|
mdb_register_backend(mdb_sybase_types, quote_name_with_dquotes, "sybase");
|
|
|
|
mdb_register_backend(mdb_oracle_types, quote_name_with_dquotes, "oracle");
|
|
|
|
mdb_register_backend(mdb_postgres_types, quote_name_with_dquotes, "postgres");
|
|
|
|
mdb_register_backend(mdb_mysql_types, quote_name_with_rquotes, "mysql");
|
2000-04-03 01:08:30 +08:00
|
|
|
}
|
2010-06-21 04:27:42 +08:00
|
|
|
void mdb_register_backend(MdbBackendType *backend_type, char* (*quote_name)(const char*), char *backend_name)
|
2000-04-03 01:08:30 +08:00
|
|
|
{
|
2004-06-11 21:56:39 +08:00
|
|
|
MdbBackend *backend = (MdbBackend *) g_malloc0(sizeof(MdbBackend));
|
|
|
|
backend->types_table = backend_type;
|
2010-06-21 04:27:42 +08:00
|
|
|
backend->quote_name = quote_name;
|
2004-06-11 21:56:39 +08:00
|
|
|
g_hash_table_insert(mdb_backends, backend_name, backend);
|
2000-04-03 01:08:30 +08:00
|
|
|
}
|
2004-06-11 21:56:39 +08:00
|
|
|
|
2004-06-22 12:27:42 +08:00
|
|
|
/**
|
|
|
|
* mdb_remove_backends
|
|
|
|
*
|
|
|
|
* Removes all entries from and destroys the mdb_backends hash.
|
|
|
|
*/
|
|
|
|
void mdb_remove_backends()
|
|
|
|
{
|
|
|
|
g_hash_table_foreach_remove(mdb_backends, mdb_drop_backend, NULL);
|
|
|
|
g_hash_table_destroy(mdb_backends);
|
|
|
|
}
|
2004-04-12 22:33:56 +08:00
|
|
|
static gboolean mdb_drop_backend(gpointer key, gpointer value, gpointer data)
|
|
|
|
{
|
|
|
|
MdbBackend *backend = (MdbBackend *)value;
|
|
|
|
g_free (backend);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2004-06-22 12:27:42 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* mdb_set_default_backend
|
|
|
|
* @mdb: Handle to open MDB database file
|
|
|
|
* @backend_name: Name of the backend to set as default
|
|
|
|
*
|
|
|
|
* Sets the default backend of the handle @mdb to @backend_name.
|
|
|
|
*
|
|
|
|
* Returns: 1 if successful, 0 if unsuccessful.
|
|
|
|
*/
|
2005-10-17 20:04:34 +08:00
|
|
|
int mdb_set_default_backend(MdbHandle *mdb, const char *backend_name)
|
2000-04-03 01:08:30 +08:00
|
|
|
{
|
2004-05-30 03:18:57 +08:00
|
|
|
MdbBackend *backend;
|
2000-04-03 01:08:30 +08:00
|
|
|
|
|
|
|
backend = (MdbBackend *) g_hash_table_lookup(mdb_backends, backend_name);
|
|
|
|
if (backend) {
|
|
|
|
mdb->default_backend = backend;
|
2004-05-30 03:18:57 +08:00
|
|
|
mdb->backend_name = (char *) g_strdup(backend_name);
|
2004-06-11 21:56:39 +08:00
|
|
|
is_init = 0;
|
2000-04-03 01:08:30 +08:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2000-04-23 05:34:32 +08:00
|
|
|
|
2010-06-21 04:30:47 +08:00
|
|
|
/**
|
|
|
|
* mdb_get_sequences
|
2011-02-17 07:57:05 +08:00
|
|
|
* @entry: Handle to open MDB database file
|
|
|
|
* @namespace: Prefix for output names
|
|
|
|
* @sanitize: Remove weird characters if true
|
2010-06-21 04:30:47 +08:00
|
|
|
*
|
|
|
|
* Generates sequences and set default values
|
|
|
|
*
|
|
|
|
* Returns: a string stating that relationships are not supported for the
|
|
|
|
* selected backend, or a string containing SQL commands for setting up
|
|
|
|
* the sequences, tailored for the selected backend.
|
|
|
|
* Returns NULL on last iteration.
|
|
|
|
* The caller is responsible for freeing this string.
|
|
|
|
*/
|
2011-02-17 07:57:05 +08:00
|
|
|
static char *
|
|
|
|
mdb_get_sequences(MdbCatalogEntry *entry, char *namespace, int sanitize)
|
2010-06-21 04:30:47 +08:00
|
|
|
{
|
|
|
|
MdbTableDef *table;
|
|
|
|
MdbHandle *mdb = entry->mdb;
|
|
|
|
int i;
|
|
|
|
int backend = 0; /* Backends: 1=oracle, 2=postgres */
|
|
|
|
const char *quoted_table_name;
|
|
|
|
char *result = NULL;
|
|
|
|
char tmp[4*512+512]; /* maximum size is 4 quoted names + some constants */
|
|
|
|
|
|
|
|
|
|
|
|
if (is_init == 1) { /* the second time through */
|
|
|
|
is_init = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
is_init = 1;
|
|
|
|
/* the first time through */
|
|
|
|
|
|
|
|
if (!strcmp(mdb->backend_name, "postgres")) {
|
|
|
|
backend = 2;
|
|
|
|
} else {
|
|
|
|
return (char *) g_strconcat(
|
2011-02-17 07:57:05 +08:00
|
|
|
"-- sequences are not implemented for ",
|
|
|
|
mdb->backend_name, "\n", NULL);
|
2010-06-21 04:30:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get the columns */
|
|
|
|
table = mdb_read_table (entry);
|
|
|
|
|
|
|
|
/* get the columns */
|
|
|
|
mdb_read_columns (table);
|
|
|
|
|
|
|
|
if (sanitize)
|
|
|
|
quoted_table_name = sanitize_name(table->name);
|
|
|
|
else
|
|
|
|
quoted_table_name = mdb->default_backend->quote_name(table->name);
|
|
|
|
|
|
|
|
for (i = 0; i < table->num_cols; i++) {
|
|
|
|
MdbColumn *col;
|
|
|
|
col = g_ptr_array_index (table->columns, i);
|
|
|
|
if (col->is_long_auto) {
|
|
|
|
const char *quoted_column_name;
|
|
|
|
char sequence_name[256+1+256+4+1];
|
|
|
|
const char *quoted_sequence_name;
|
|
|
|
quoted_column_name = mdb->default_backend->quote_name(col->name);
|
|
|
|
sprintf(sequence_name, "%s_%s_seq", entry->object_name, col->name);
|
|
|
|
quoted_sequence_name = mdb->default_backend->quote_name(sequence_name);
|
|
|
|
sprintf (tmp, "CREATE SEQUENCE %s OWNED BY %s.%s;\n", quoted_sequence_name, quoted_table_name, quoted_column_name);
|
|
|
|
if (result) {
|
|
|
|
result = realloc(result, strlen(result) + strlen(tmp) + 1); /* sentry */
|
|
|
|
strcat(result, tmp);
|
|
|
|
} else
|
|
|
|
result = strdup(tmp);
|
|
|
|
/* after that point, result can't be NULL any more */
|
|
|
|
|
|
|
|
sprintf (tmp, "ALTER TABLE %s ALTER COLUMN %s SET DEFAULT pg_catalog.nextval('%s');\n\n",
|
|
|
|
quoted_table_name, quoted_column_name, quoted_sequence_name);
|
|
|
|
result = realloc(result, strlen(result) + strlen(tmp) + 1); /* sentry */
|
|
|
|
strcat(result, tmp);
|
|
|
|
|
|
|
|
free((void*)quoted_column_name);
|
|
|
|
free((void*)quoted_sequence_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
is_init = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-17 07:57:05 +08:00
|
|
|
/**
|
|
|
|
* mdb_print_indexes
|
|
|
|
* @output: Where to print the sql
|
|
|
|
* @table: Table to process
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
mdb_print_indexes(FILE* outfile, MdbTableDef *table, char *namespace, int sanitize)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
|
|
|
char* quoted_table_name;
|
|
|
|
char* index_name;
|
|
|
|
char* quoted_name;
|
|
|
|
MdbHandle* mdb = table->entry->mdb;
|
|
|
|
MdbIndex *idx;
|
|
|
|
MdbColumn *col;
|
|
|
|
|
|
|
|
if (strcmp(mdb->backend_name, "postgres")) {
|
|
|
|
fprintf(outfile, "-- Indexes are not implemented for %s\n\n", mdb->backend_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read indexes */
|
|
|
|
mdb_read_indices(table);
|
|
|
|
|
|
|
|
fprintf (outfile, "-- CREATE ANY INDEXES ...\n");
|
|
|
|
|
|
|
|
if (sanitize)
|
|
|
|
quoted_table_name = sanitize_name(table->name);
|
|
|
|
else
|
|
|
|
quoted_table_name = mdb->default_backend->quote_name(table->name);
|
|
|
|
|
|
|
|
for (i=0;i<table->num_idxs;i++) {
|
|
|
|
idx = g_ptr_array_index (table->indices, i);
|
|
|
|
if (idx->index_type==2)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
index_name = malloc(strlen(table->name)+strlen(idx->name)+4+1);
|
|
|
|
strcpy(index_name, table->name);
|
|
|
|
strcat(index_name, idx->name);
|
|
|
|
if (idx->index_type==1)
|
|
|
|
strcat(index_name, "_pk");
|
|
|
|
else
|
|
|
|
strcat(index_name, "_idx");
|
|
|
|
if (sanitize)
|
|
|
|
quoted_name = sanitize_name(index_name);
|
|
|
|
else
|
|
|
|
quoted_name = mdb->default_backend->quote_name(index_name);
|
|
|
|
if (idx->index_type==1) {
|
|
|
|
fprintf (outfile, "ALTER TABLE %s ADD CONSTRAINT %s PRIMARY KEY (", quoted_table_name, quoted_name);
|
|
|
|
} else {
|
|
|
|
fprintf(outfile, "CREATE");
|
|
|
|
if (idx->flags & MDB_IDX_UNIQUE)
|
|
|
|
fprintf (outfile, " UNIQUE");
|
|
|
|
fprintf(outfile, " INDEX %s ON %s (", quoted_name, quoted_table_name);
|
|
|
|
}
|
|
|
|
free(quoted_name);
|
|
|
|
free(index_name);
|
|
|
|
|
|
|
|
for (j=0;j<idx->num_keys;j++) {
|
|
|
|
if (j)
|
|
|
|
fprintf(outfile, ", ");
|
|
|
|
col=g_ptr_array_index(table->columns,idx->key_col_num[j]-1);
|
|
|
|
if (sanitize)
|
|
|
|
quoted_name = sanitize_name(col->name);
|
|
|
|
else
|
|
|
|
quoted_name = mdb->default_backend->quote_name(col->name);
|
|
|
|
fprintf (outfile, "%s", quoted_name);
|
|
|
|
if (idx->index_type!=1 && idx->key_col_order[j])
|
|
|
|
/* no DESC for primary keys */
|
|
|
|
fprintf(outfile, " DESC");
|
|
|
|
|
|
|
|
free(quoted_name);
|
|
|
|
|
|
|
|
}
|
|
|
|
fprintf (outfile, ");\n");
|
|
|
|
}
|
|
|
|
fprintf (outfile, "\n");
|
|
|
|
fprintf (outfile, "\n");
|
|
|
|
}
|
|
|
|
|
2004-06-22 12:27:42 +08:00
|
|
|
/**
|
|
|
|
* mdb_get_relationships
|
|
|
|
* @mdb: Handle to open MDB database file
|
2011-02-17 07:57:05 +08:00
|
|
|
* @tablename: Name of the table to process. Process all tables if NULL.
|
2004-06-22 12:27:42 +08:00
|
|
|
*
|
|
|
|
* Generates relationships by reading the MSysRelationships table.
|
|
|
|
* 'szColumn' contains the column name of the child table.
|
|
|
|
* 'szObject' contains the table name of the child table.
|
|
|
|
* 'szReferencedColumn' contains the column name of the parent table.
|
|
|
|
* 'szReferencedObject' contains the table name of the parent table.
|
2010-06-21 04:28:54 +08:00
|
|
|
* 'grbit' contains integrity constraints.
|
2004-06-22 12:27:42 +08:00
|
|
|
*
|
|
|
|
* Returns: a string stating that relationships are not supported for the
|
|
|
|
* selected backend, or a string containing SQL commands for setting up
|
2010-06-21 04:28:54 +08:00
|
|
|
* the relationship, tailored for the selected backend.
|
|
|
|
* Returns NULL on last iteration.
|
|
|
|
* The caller is responsible for freeing this string.
|
2000-04-23 05:34:32 +08:00
|
|
|
*/
|
2011-02-17 07:57:05 +08:00
|
|
|
static char *
|
|
|
|
mdb_get_relationships(MdbHandle *mdb, const char* tablename)
|
2004-06-11 21:56:39 +08:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2004-07-03 12:56:07 +08:00
|
|
|
gchar *text = NULL; /* String to be returned */
|
2010-06-21 04:28:54 +08:00
|
|
|
static char *bound[5]; /* Bound values */
|
2004-06-11 21:56:39 +08:00
|
|
|
static MdbTableDef *table; /* Relationships table */
|
2010-06-21 04:28:54 +08:00
|
|
|
int backend = 0; /* Backends: 1=oracle, 2=postgres */
|
2010-06-21 04:27:42 +08:00
|
|
|
char *quoted_table_1, *quoted_column_1,
|
|
|
|
*quoted_table_2, *quoted_column_2,
|
2010-06-21 04:28:54 +08:00
|
|
|
*constraint_name, *quoted_constraint_name;
|
|
|
|
long grbit;
|
2000-04-23 05:34:32 +08:00
|
|
|
|
2010-06-21 04:28:54 +08:00
|
|
|
if (!strcmp(mdb->backend_name, "oracle")) {
|
2004-06-11 21:56:39 +08:00
|
|
|
backend = 1;
|
2010-06-21 04:28:54 +08:00
|
|
|
} else if (!strcmp(mdb->backend_name, "postgres")) {
|
|
|
|
backend = 2;
|
2004-06-11 21:56:39 +08:00
|
|
|
} else {
|
|
|
|
if (is_init == 0) { /* the first time through */
|
|
|
|
is_init = 1;
|
|
|
|
return (char *) g_strconcat(
|
2011-02-17 07:57:05 +08:00
|
|
|
"-- relationships are not implemented for ",
|
|
|
|
mdb->backend_name, "\n", NULL);
|
2004-06-11 21:56:39 +08:00
|
|
|
} else { /* the second time through */
|
|
|
|
is_init = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_init == 0) {
|
2004-07-02 20:29:09 +08:00
|
|
|
table = mdb_read_table_by_name(mdb, "MSysRelationships", MDB_TABLE);
|
2004-06-11 21:56:39 +08:00
|
|
|
if ((!table) || (table->num_rows == 0)) {
|
2010-06-21 04:28:54 +08:00
|
|
|
fprintf(stderr, "No MSysRelationships\n");
|
2004-06-11 21:56:39 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mdb_read_columns(table);
|
2010-06-21 04:28:54 +08:00
|
|
|
for (i=0;i<5;i++) {
|
2004-06-11 21:56:39 +08:00
|
|
|
bound[i] = (char *) g_malloc0(MDB_BIND_SIZE);
|
|
|
|
}
|
2004-12-31 09:26:28 +08:00
|
|
|
mdb_bind_column_by_name(table, "szColumn", bound[0], NULL);
|
|
|
|
mdb_bind_column_by_name(table, "szObject", bound[1], NULL);
|
|
|
|
mdb_bind_column_by_name(table, "szReferencedColumn", bound[2], NULL);
|
|
|
|
mdb_bind_column_by_name(table, "szReferencedObject", bound[3], NULL);
|
2010-06-21 04:28:54 +08:00
|
|
|
mdb_bind_column_by_name(table, "grbit", bound[4], NULL);
|
2004-06-11 21:56:39 +08:00
|
|
|
mdb_rewind_table(table);
|
|
|
|
|
|
|
|
is_init = 1;
|
|
|
|
}
|
2010-06-21 04:28:54 +08:00
|
|
|
else {
|
|
|
|
if (!table) {
|
|
|
|
fprintf(stderr, "table is NULL\n");
|
|
|
|
}
|
|
|
|
if (table->cur_row >= table->num_rows) { /* past the last row */
|
|
|
|
for (i=0;i<5;i++)
|
|
|
|
g_free(bound[i]);
|
|
|
|
is_init = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-06-11 21:56:39 +08:00
|
|
|
}
|
|
|
|
|
2011-02-17 07:57:05 +08:00
|
|
|
while (1) {
|
|
|
|
if (!mdb_fetch_row(table)) {
|
|
|
|
for (i=0;i<5;i++)
|
|
|
|
g_free(bound[i]);
|
|
|
|
is_init = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!tablename || !strcmp(bound[1], tablename))
|
|
|
|
break;
|
2004-06-11 21:56:39 +08:00
|
|
|
}
|
|
|
|
|
2010-06-21 04:28:54 +08:00
|
|
|
quoted_table_1 = mdb->default_backend->quote_name(bound[1]);
|
|
|
|
quoted_column_1 = mdb->default_backend->quote_name(bound[0]);
|
|
|
|
quoted_table_2 = mdb->default_backend->quote_name(bound[3]);
|
|
|
|
quoted_column_2 = mdb->default_backend->quote_name(bound[2]);
|
|
|
|
grbit = atoi(bound[4]);
|
|
|
|
constraint_name = g_strconcat(bound[1], "_", bound[0], "_fk", NULL);
|
|
|
|
quoted_constraint_name = mdb->default_backend->quote_name(constraint_name);
|
|
|
|
free(constraint_name);
|
|
|
|
|
|
|
|
if (grbit & 0x00000002) {
|
|
|
|
text = g_strconcat(
|
|
|
|
"-- Relationship from ", quoted_table_1,
|
|
|
|
" (", quoted_column_1, ")"
|
|
|
|
" to ", quoted_table_2, "(", quoted_column_2, ")",
|
|
|
|
" does not enforce integrity.\n", NULL);
|
|
|
|
} else {
|
|
|
|
switch (backend) {
|
|
|
|
case 1: /* oracle */
|
|
|
|
case 2: /* postgres */
|
|
|
|
text = g_strconcat(
|
|
|
|
"ALTER TABLE ", quoted_table_1,
|
|
|
|
" ADD CONSTRAINT ", quoted_constraint_name,
|
|
|
|
" FOREIGN KEY (", quoted_column_1, ")"
|
|
|
|
" REFERENCES ", quoted_table_2, "(", quoted_column_2, ")",
|
|
|
|
(grbit & 0x00000100) ? " ON UPDATE CASCADE" : "",
|
|
|
|
(grbit & 0x00001000) ? " ON DELETE CASCADE" : "",
|
|
|
|
";\n", NULL);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2004-06-11 21:56:39 +08:00
|
|
|
}
|
2010-06-21 04:28:54 +08:00
|
|
|
free(quoted_table_1);
|
|
|
|
free(quoted_column_1);
|
|
|
|
free(quoted_table_2);
|
|
|
|
free(quoted_column_2);
|
|
|
|
free(quoted_constraint_name);
|
2004-06-11 21:56:39 +08:00
|
|
|
|
|
|
|
return (char *)text;
|
|
|
|
}
|
2011-02-17 07:57:05 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
generate_table_schema(FILE *outfile, MdbCatalogEntry *entry, char *namespace, guint32 export_options)
|
|
|
|
{
|
|
|
|
MdbTableDef *table;
|
|
|
|
MdbHandle *mdb = entry->mdb;
|
|
|
|
MdbColumn *col;
|
|
|
|
unsigned int i;
|
|
|
|
char* table_name;
|
|
|
|
char* quoted_table_name;
|
|
|
|
char* quoted_name;
|
|
|
|
char* sql_sequences;
|
|
|
|
int sanitize = export_options & MDB_SHEXP_SANITIZE;
|
|
|
|
|
|
|
|
if (sanitize)
|
|
|
|
quoted_table_name = sanitize_name(entry->object_name);
|
|
|
|
else
|
|
|
|
quoted_table_name = mdb->default_backend->quote_name(entry->object_name);
|
|
|
|
|
|
|
|
if (namespace) {
|
|
|
|
table_name = malloc(strlen(namespace)+strlen(quoted_table_name)+1);
|
|
|
|
strcpy(table_name, namespace);
|
|
|
|
strcat(table_name, quoted_table_name);
|
|
|
|
free(quoted_table_name);
|
|
|
|
quoted_table_name = table_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* drop the table if it exists */
|
|
|
|
if (export_options & MDB_SHEXP_DROPTABLE)
|
|
|
|
fprintf (outfile, "DROP TABLE %s;\n", quoted_table_name);
|
|
|
|
|
|
|
|
/* create the table */
|
|
|
|
fprintf (outfile, "CREATE TABLE %s\n", quoted_table_name);
|
|
|
|
fprintf (outfile, " (\n");
|
|
|
|
|
|
|
|
table = mdb_read_table (entry);
|
|
|
|
|
|
|
|
/* get the columns */
|
|
|
|
mdb_read_columns (table);
|
|
|
|
|
|
|
|
/* loop over the columns, dumping the names and types */
|
|
|
|
|
|
|
|
for (i = 0; i < table->num_cols; i++) {
|
|
|
|
col = g_ptr_array_index (table->columns, i);
|
|
|
|
|
|
|
|
if (sanitize)
|
|
|
|
quoted_name = sanitize_name(col->name);
|
|
|
|
else
|
|
|
|
quoted_name = mdb->default_backend->quote_name(col->name);
|
|
|
|
fprintf (outfile, "\t%s\t\t\t%s", quoted_name,
|
|
|
|
mdb_get_coltype_string (mdb->default_backend, col->col_type));
|
|
|
|
free(quoted_name);
|
|
|
|
|
|
|
|
if (mdb_coltype_takes_length(mdb->default_backend,
|
|
|
|
col->col_type)) {
|
|
|
|
|
|
|
|
/* more portable version from DW patch */
|
|
|
|
if (col->col_size == 0)
|
|
|
|
fputs(" (255)", outfile);
|
|
|
|
else
|
|
|
|
fprintf(outfile, " (%d)", col->col_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < table->num_cols - 1)
|
|
|
|
fputs(", \n", outfile);
|
|
|
|
else
|
|
|
|
fputs("\n", outfile);
|
|
|
|
} /* for */
|
|
|
|
|
|
|
|
fputs(");\n", outfile);
|
|
|
|
|
|
|
|
fputs("-- CREATE SEQUENCES ...\n", outfile);
|
|
|
|
fputs("\n", outfile);
|
|
|
|
while ((sql_sequences = mdb_get_sequences(entry, namespace, sanitize))) {
|
|
|
|
fputs(sql_sequences, outfile);
|
|
|
|
free(sql_sequences);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (export_options & MDB_SHEXP_INDEXES)
|
|
|
|
// prints all the indexes of that table
|
|
|
|
mdb_print_indexes(outfile, table, namespace, sanitize);
|
|
|
|
|
|
|
|
free(quoted_table_name);
|
|
|
|
|
|
|
|
mdb_free_tabledef (table);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
mdb_print_schema(MdbHandle *mdb, FILE *outfile, char *tabname, char *namespace, guint32 export_options)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
char *the_relation;
|
|
|
|
MdbCatalogEntry *entry;
|
|
|
|
|
|
|
|
/* Print out a little message to show that this came from mdb-tools.
|
|
|
|
I like to know how something is generated. DW */
|
|
|
|
fputs("-------------------------------------------------------------\n"
|
|
|
|
"-- MDB Tools - A library for reading MS Access database files\n"
|
|
|
|
"-- Copyright (C) 2000-2011 Brian Bruns and others.\n"
|
|
|
|
"-- Files in libmdb are licensed under LGPL and the utilities under\n"
|
|
|
|
"-- the GPL, see COPYING.LIB and COPYING files respectively.\n"
|
|
|
|
"-- Check out http://mdbtools.sourceforge.net\n"
|
|
|
|
"-------------------------------------------------------------\n\n",
|
|
|
|
outfile);
|
|
|
|
|
|
|
|
for (i=0; i < mdb->num_catalog; i++) {
|
|
|
|
entry = g_ptr_array_index (mdb->catalog, i);
|
|
|
|
if (entry->object_type == MDB_TABLE) {
|
|
|
|
if ((tabname && !strcmp(entry->object_name, tabname))
|
|
|
|
|| (!tabname && mdb_is_user_table(entry))) {
|
|
|
|
generate_table_schema(outfile, entry, namespace, export_options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf (outfile, "\n");
|
|
|
|
|
|
|
|
if (export_options & MDB_SHEXP_RELATIONS) {
|
|
|
|
fputs ("-- CREATE Relationships ...\n", outfile);
|
|
|
|
while ((the_relation=mdb_get_relationships(mdb, tabname)) != NULL) {
|
|
|
|
fputs(the_relation, outfile);
|
|
|
|
g_free(the_relation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-01-15 13:02:04 +08:00
|
|
|
#endif
|