SQlite improvements
This commit is contained in:
parent
89a014685d
commit
4e1c604c3a
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user