-
how to do?
@Query(sql)
Future findBySql(String sql);
in .g.dart
@override
Future findBySql(String sql) async {
return _queryAdapter.query(sql, mapper: _tMapper);
}
-
## Expected Behavior
Here's my schema:
```
sqlite> .schema
CREATE TABLE risk (id integer primary key, description varchar, weight integer, severity integer, likelihood integer, type_1 var…
-
Hi.
Sometimes undefined offset 1 are reported. Can you make the following changes?
Before:
$val = $vals[$i++];
After:
$val = isset($vals[$i++]) ? $vals[$i++] : null;
Looking forward to your re…
-
Hi,
Im using this to handle error (example of query only, it is not real):
```
try {
await db.rawQuery("SELECT * FROM test_not_exists");
} catch (e) {
return [];
}
```
Error:
`…
-
i am not receiving any update from downloader_send_port isolate when i enqueue file more than 10. can anyone tell me what could be the possible issue?.
It's just straight up downloads the files wit…
-
whereArgs doesn't like booleans (at least if provided from Kotlin).
had to create an extension function to convert true -> int (1) or false -> int (0)
```
return Query.builder()
…
-
Hi
I have this script that works directly (mySql)
INSERT INTO `at_crc_tratamento_manual`
(dia, nif, tribunal, processo, citacao, certidao, juizo, nome, sf)
SELECT
dia,nif,tribunal,proces…
-
Hello!
I'm asking if with SharkORM I can import an external DB.
What I want to do is:
- Put the database file (assetDatabase.db) as asset in my project;
- Create a new db when launching the app (i…
-
It doesn't appear that this is currently possible. It was requested in issue [#364](https://github.com/joshcam/PHP-MySQLi-Database-Class/issues/364) but never added. Would it be possible for this to b…
-
Is it possible to tell paginate to retrieve columns from joined tables? I could return the whole thing but if I could tell it to only retrieve the columns I want it would save writing a lot of JS
Thi…