diff options
author | wei <> | 2007-05-04 08:37:12 +0000 |
---|---|---|
committer | wei <> | 2007-05-04 08:37:12 +0000 |
commit | 8708f7e88e423b44ea4b3b8fff14f055d2b5c4ac (patch) | |
tree | f468f8990c7675089f804914453ba994d0c1be30 /framework/Data/Common/Sqlite/TSqliteTableInfo.php | |
parent | c1bddf3826ec570ea4c58d7a56c410ae54d26508 (diff) |
Add saving/updating ActiveRecord relationships.
Diffstat (limited to 'framework/Data/Common/Sqlite/TSqliteTableInfo.php')
-rw-r--r-- | framework/Data/Common/Sqlite/TSqliteTableInfo.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/framework/Data/Common/Sqlite/TSqliteTableInfo.php b/framework/Data/Common/Sqlite/TSqliteTableInfo.php index e0bcb484..52c872d6 100644 --- a/framework/Data/Common/Sqlite/TSqliteTableInfo.php +++ b/framework/Data/Common/Sqlite/TSqliteTableInfo.php @@ -35,6 +35,14 @@ class TSqliteTableInfo extends TDbTableInfo Prado::using('System.Data.Common.Sqlite.TSqliteCommandBuilder');
return new TSqliteCommandBuilder($connection,$this);
}
+
+ /**
+ * @return string full name of the table, database dependent.
+ */
+ public function getTableFullName()
+ {
+ return "'".$this->getTableName()."'";
+ }
}
?>
\ No newline at end of file |