-
启动爬虫出现
PDOException : SQLSTATE[HY000] [2002] ����Ŀ�����������ܾ�������ӡ
…
-
I think the reason behind this bug is that the methods get($table, $columns, $where) and get($table, $join, $columns, $where) are exchanged, causing a fatal **ArgumentCountError** exception.
- Vers…
-
I try to use Medoo with sqlite and have some problems.
```
require_once('vendor/medoo.php');
$db = new Medoo\Medoo([
'database_type' => 'sqlite',
'database_file' => ':memory:',
]);
…
pwFoo updated
5 years ago
-
Query: select ('db1.tb1', null,'*'), does not support cross-database statement queries, like this: select * from db1.tb1.
-
mysql :
selelct * from people where lower(name) = 'john';
medoo:
medoo->select('people', '*',
[ name => 'john']);
???
while i want to convert column name into lowercase then compare w…
-
Support batch update?
like this:
```
$data = $database->update("account", [
"uid" => [1,2,3,5,6,7,8]
], [
['username'=>'a','age'=>23],
['username'=>'b','age'=>24],
... //Similar to t…
-
https://github.com/catfan/Medoo/blob/master/src/Medoo.php#L1071
```php
public function get($table, $join = null, $columns = null, $where = null)
```
But the docs claim:
http://medoo.in/api/ge…
ghost updated
5 years ago
-
**Describe the bug**
It appears that Medoo rounds decimals/floats to integers before comparing. This means that when searching for a record such as `5.5` using `["col[
-
Hi all,
**medoo 1.6.1**
God i love medoo (using since 3 years now) for mySQL/MsSQL.
Is there any reason why there is no PHPDocs on functions ? Could be a great to have it since IDE rely on that t…
ghost updated
5 years ago
-
I use Medoo in a plugin for PocketMine. Medoo is only beeing used when there are players online. If a player joins when there weren't any players for some time, Medoo looses connection and the server …