switch to hashref based for command args and results
[dbsrgits/DBIx-Data-Store-old.git] / lib / DBIx / Data / Store.pm
index 5181bcf..e10bb0a 100644 (file)
@@ -27,15 +27,16 @@ method new_call_command ($sql, $args) {
   );
 }
 
-method new_row_command ($sql, $args) {
+method new_row_command ($sql, $args, $column_order) {
   return DBIx::Data::Store::Command::Row->new(
     run => $sql, with => $args, against => $self->connection
   );
 }
 
-method new_stream_command ($sql, $args) {
+method new_stream_command ($sql, $args, $column_order) {
   return DBIx::Data::Store::Command::Stream->new(
-    run => $sql, with => $args, against => $self->connection
+    run => $sql, with => $args, against => $self->connection,
+    column_order => $column_order
   );
 }