projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7c4b64e
)
Removed deprecated stuff from SQL.pm (cheers abraxxa)
Matt S Trout [Thu, 4 Aug 2005 14:50:48 +0000 (14:50 +0000)]
lib/DBIx/Class/SQL.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/SQL.pm
b/lib/DBIx/Class/SQL.pm
index
65beae4
..
f176521
100644
(file)
--- a/
lib/DBIx/Class/SQL.pm
+++ b/
lib/DBIx/Class/SQL.pm
@@
-45,16
+45,6
@@
sub create_sql {
*_get_sql = \&create_sql;
-sub _sql_to_sth {
- my ($class, $sql) = @_;
- return $class->_get_dbh->prepare($sql);
-}
-
-sub _get_sth {
- my $class = shift;
- return $class->_sql_to_sth($class->_get_sql(@_));
-}
-
1;
=head1 AUTHORS