2000-03-12 09:22:10 +08:00
|
|
|
/* MDB Tools - A library for reading MS Access database file
|
|
|
|
* Copyright (C) 2000 Brian Bruns
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* this utility dumps the schema for an existing database */
|
|
|
|
#include "mdbtools.h"
|
|
|
|
|
2003-01-29 07:51:06 +08:00
|
|
|
#ifdef DMALLOC
|
|
|
|
#include "dmalloc.h"
|
|
|
|
#endif
|
|
|
|
|
2003-01-21 00:04:24 +08:00
|
|
|
int
|
2000-03-12 09:22:10 +08:00
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2003-01-21 00:04:24 +08:00
|
|
|
int i, k;
|
2000-03-12 09:22:10 +08:00
|
|
|
MdbHandle *mdb;
|
2002-03-27 21:00:00 +08:00
|
|
|
MdbCatalogEntry *entry;
|
2000-03-12 09:22:10 +08:00
|
|
|
MdbTableDef *table;
|
2000-03-12 22:08:53 +08:00
|
|
|
MdbColumn *col;
|
2000-04-23 05:34:32 +08:00
|
|
|
char *the_relation;
|
2002-12-27 23:09:02 +08:00
|
|
|
char *tabname = NULL;
|
|
|
|
int opt;
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
if (argc < 2) {
|
2000-04-03 01:08:30 +08:00
|
|
|
fprintf (stderr, "Usage: %s <file> [<backend>]\n",argv[0]);
|
2000-03-12 09:22:10 +08:00
|
|
|
exit (1);
|
|
|
|
}
|
2002-12-27 23:09:02 +08:00
|
|
|
|
|
|
|
while ((opt=getopt(argc, argv, "T:"))!=-1) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'T':
|
|
|
|
tabname = (char *) malloc(strlen(optarg)+1);
|
|
|
|
strcpy(tabname, optarg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-03-12 09:22:10 +08:00
|
|
|
|
2000-04-03 01:08:30 +08:00
|
|
|
mdb_init();
|
|
|
|
|
2000-03-12 09:22:10 +08:00
|
|
|
/* open the database */
|
|
|
|
|
2002-12-27 23:09:02 +08:00
|
|
|
mdb = mdb_open (argv[optind]);
|
|
|
|
if (argc - optind >2) {
|
|
|
|
if (!mdb_set_default_backend(mdb, argv[optind + 1])) {
|
2000-04-03 01:08:30 +08:00
|
|
|
fprintf(stderr,"Invalid backend type\n");
|
|
|
|
mdb_exit();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
/* read the catalog */
|
|
|
|
|
|
|
|
mdb_read_catalog (mdb, MDB_TABLE);
|
|
|
|
|
|
|
|
/* loop over each entry in the catalog */
|
|
|
|
|
|
|
|
for (i=0; i < mdb->num_catalog; i++)
|
|
|
|
{
|
2002-03-27 21:00:00 +08:00
|
|
|
entry = g_ptr_array_index (mdb->catalog, i);
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
/* if it's a table */
|
|
|
|
|
2002-03-27 21:00:00 +08:00
|
|
|
if (entry->object_type == MDB_TABLE)
|
2000-03-12 09:22:10 +08:00
|
|
|
{
|
|
|
|
/* skip the MSys tables */
|
2002-12-27 23:09:02 +08:00
|
|
|
if ((tabname && !strcmp(entry->object_name,tabname)) ||
|
|
|
|
(!tabname && strncmp (entry->object_name, "MSys", 4)))
|
2000-03-12 09:22:10 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
/* make sure it's a table (may be redundant) */
|
|
|
|
|
2002-03-27 21:00:00 +08:00
|
|
|
if (!strcmp (mdb_get_objtype_string (entry->object_type), "Table"))
|
2000-03-12 09:22:10 +08:00
|
|
|
{
|
|
|
|
/* drop the table if it exists */
|
2002-03-27 21:00:00 +08:00
|
|
|
fprintf (stdout, "DROP TABLE %s;\n", entry->object_name);
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
/* create the table */
|
2002-03-27 21:00:00 +08:00
|
|
|
fprintf (stdout, "CREATE TABLE %s\n", entry->object_name);
|
2000-03-12 09:22:10 +08:00
|
|
|
fprintf (stdout, " (\n");
|
|
|
|
|
2002-03-27 21:00:00 +08:00
|
|
|
table = mdb_read_table (entry);
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
/* get the columns */
|
|
|
|
mdb_read_columns (table);
|
|
|
|
|
|
|
|
/* loop over the columns, dumping the names and types */
|
|
|
|
|
|
|
|
for (k = 0; k < table->num_cols; k++)
|
|
|
|
{
|
2000-03-12 22:08:53 +08:00
|
|
|
col = g_ptr_array_index (table->columns, k);
|
2000-03-12 09:22:10 +08:00
|
|
|
|
2000-03-12 22:08:53 +08:00
|
|
|
fprintf (stdout, "\t%s\t\t\t%s", col->name,
|
2000-04-03 01:08:30 +08:00
|
|
|
mdb_get_coltype_string (mdb->default_backend, col->col_type));
|
2000-03-12 09:22:10 +08:00
|
|
|
|
2000-03-12 22:08:53 +08:00
|
|
|
if (col->col_size != 0)
|
|
|
|
fprintf (stdout, " (%d)", col->col_size);
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
if (k < table->num_cols - 1)
|
|
|
|
fprintf (stdout, ", \n");
|
|
|
|
else
|
|
|
|
fprintf (stdout, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf (stdout, "\n);\n");
|
|
|
|
fprintf (stdout, "-- CREATE ANY INDEXES ...\n");
|
|
|
|
fprintf (stdout, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-04-23 05:34:32 +08:00
|
|
|
fprintf (stdout, "\n\n");
|
|
|
|
fprintf (stdout, "-- CREATE ANY Relationships ...\n");
|
|
|
|
fprintf (stdout, "\n");
|
|
|
|
the_relation=mdb_get_relationships(mdb);
|
|
|
|
while (the_relation[0] != '\0') {
|
|
|
|
fprintf(stdout,"%s\n",the_relation);
|
|
|
|
the_relation=mdb_get_relationships(mdb);
|
|
|
|
}
|
2000-03-12 09:22:10 +08:00
|
|
|
|
|
|
|
mdb_free_handle (mdb);
|
2000-04-03 01:08:30 +08:00
|
|
|
mdb_exit();
|
2002-08-13 01:37:04 +08:00
|
|
|
|
|
|
|
exit(0);
|
2000-03-12 09:22:10 +08:00
|
|
|
}
|
|
|
|
|