diff --git a/src/databases/sqlite.php b/src/databases/sqlite.php index 417ee75..2b56ed0 100644 --- a/src/databases/sqlite.php +++ b/src/databases/sqlite.php @@ -49,6 +49,8 @@ class SQLite extends DB_PDO { $this->prepare_query($sql, array( ':table' => $table )); + + $this->statement->execute(); } /** @@ -112,6 +114,8 @@ SQL; $this->prepare_query($sql, array( ':name' => $name, )); + + $this->statement->execute(); } /** diff --git a/src/windows/main.php b/src/windows/main.php index 0e244aa..3ef4d09 100644 --- a/src/windows/main.php +++ b/src/windows/main.php @@ -97,7 +97,7 @@ class Main extends GtkWindow { $this->connect_simple('destroy', array('gtk', 'main_quit')); // Main Vbox that everything is contained in - $main_vbox = new GTKVBox(); + $main_vbox = new GTKVBox(FALSE, 5); // Main Hpaned for columns $hpane = new GTKHPaned();