File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
- # odbc 1.1.6.9000
1
+ # odbc (development version)
2
+
3
+ ## Features
4
+
5
+ ## Bugfixes
6
+
7
+ * Fixed an issue where ` DBI::dbListFields() ` could fail when used with a
8
+ a qualified Id object (using both schema and table). (#226 )
2
9
3
10
- fix SQL Server ODBC's unsupported '-155' data type, and its losing
4
11
sub-second precision on timestamps; this still returns type
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ setMethod(
49
49
setMethod(
50
50
" dbFetch" , " OdbcResult" ,
51
51
function (res , n = - 1 , ... ) {
52
- result_fetch(res @ ptr , n , ... )
52
+ result_fetch(res @ ptr , n )
53
53
})
54
54
55
55
# ' @rdname OdbcResult
@@ -88,7 +88,7 @@ setMethod(
88
88
setMethod(
89
89
" dbColumnInfo" , " OdbcResult" ,
90
90
function (res , ... ) {
91
- result_column_info(res @ ptr , ... )
91
+ result_column_info(res @ ptr )
92
92
})
93
93
94
94
# ' @rdname OdbcResult
You can’t perform that action at this time.
0 commit comments