mirror of https://github.com/adamdruppe/arsd.git
spurious deprecations
This commit is contained in:
parent
2344fbb1d0
commit
4748b8009a
8
sqlite.d
8
sqlite.d
|
@ -113,8 +113,8 @@ class Sqlite : Database {
|
||||||
|
|
||||||
override ResultSet queryImpl(string sql, Variant[] args...) {
|
override ResultSet queryImpl(string sql, Variant[] args...) {
|
||||||
auto s = Statement(this, sql);
|
auto s = Statement(this, sql);
|
||||||
foreach(int i, arg; args) {
|
foreach(i, arg; args) {
|
||||||
s.bind(i + 1, arg);
|
s.bind(cast(int) i + 1, arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
return s.execute();
|
return s.execute();
|
||||||
|
@ -195,9 +195,9 @@ class Sqlite : Database {
|
||||||
|
|
||||||
class SqliteResult : ResultSet {
|
class SqliteResult : ResultSet {
|
||||||
int getFieldIndex(string field) {
|
int getFieldIndex(string field) {
|
||||||
foreach(int i, n; columnNames)
|
foreach(i, n; columnNames)
|
||||||
if(n == field)
|
if(n == field)
|
||||||
return i;
|
return cast(int) i;
|
||||||
throw new Exception("no such field " ~ field);
|
throw new Exception("no such field " ~ field);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue