NAME

MySQL::Workbench::SQLiteSimple - Create a simple .sql file for SQLite from MySQL Workbench file (.mwb)

VERSION

version 0.03

SYNOPSIS

use MySQL::Workbench::SQLiteSimple;

my $foo = MySQL::Workbench::SQLiteSimple->new(
    file           => '/path/to/file.mwb',
    output_path    => $some_path,
);

$foo->create_sql;

METHODS

new

creates a new object of MySQL::Workbench::SQLiteSimple. You can pass some parameters to new:

my $foo = MySQL::Workbench::SQLiteSimple->new(
  output_path => '/path/to/dir',
  file        => '/path/to/dbdesigner.file',
);

create_sql

creates a sqlite.sql

ATTRIBUTES

output_path

sets / gets the output path for the scheme

print $foo->output_path;

file

sets / gets the name of the Workbench file

print $foo->file;

AUTHOR

Renee Baecker <reneeb@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2018 by Renee Baecker.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)