SQlite improvements

This commit is contained in:
Timothy Warren 2012-02-23 20:10:13 -05:00
parent 89a014685d
commit 4e1c604c3a
2 changed files with 5 additions and 1 deletions

View File

@ -49,6 +49,8 @@ class SQLite extends DB_PDO {
$this->prepare_query($sql, array( $this->prepare_query($sql, array(
':table' => $table ':table' => $table
)); ));
$this->statement->execute();
} }
/** /**
@ -112,6 +114,8 @@ SQL;
$this->prepare_query($sql, array( $this->prepare_query($sql, array(
':name' => $name, ':name' => $name,
)); ));
$this->statement->execute();
} }
/** /**

View File

@ -97,7 +97,7 @@ class Main extends GtkWindow {
$this->connect_simple('destroy', array('gtk', 'main_quit')); $this->connect_simple('destroy', array('gtk', 'main_quit'));
// Main Vbox that everything is contained in // Main Vbox that everything is contained in
$main_vbox = new GTKVBox(); $main_vbox = new GTKVBox(FALSE, 5);
// Main Hpaned for columns // Main Hpaned for columns
$hpane = new GTKHPaned(); $hpane = new GTKHPaned();