-
My table has a A composite key which used as the primary key. such as:
PRIMARY KEY (`kw`,`date`),
execute insert api , the data is successfully loaded into db, but it still return 0, which can not i…
-
Hi, working through the example chapter and encountered the following:
( ! ) Fatal error: Uncaught exception 'Exception' with message 'could not find driver' in C:\Users\twelch\hi_guestapp\guestbook\…
-
Hello,
I'm not able to find, what is correct syntax to receive id of last record from insert for PostgreSQL. What is in documentation is ok only in MySQL.
Where is possible to find more details?
Thx…
-
Hey,
Is there no fail-safe for Medoo?
If the database is down and Medoo tries to perform queries, it will not print any output after the point in which the first query was performed, meaning some html…
-
Hi
At first I should say that medoo in awesome.
Then, I use this line to search into my records:
$datas = $database->select("Board","*",["OR" => ["title[~]" => $_GET['q'],"text[~]" => $_GET['q']]],["O…
-
Hello. I found a bug in medoo. Example:
with string value:
``` php
$db->debug()->get('table', '*', [
'field[~]' => '12345'
]);
```
sql result:
``` sql
SELECT * FROM "table" WHERE "field" LIKE '…
-
-
-
Hi! I am using 'charset' => 'utf8' in my config.php =)
In mysql my column looks: "Тут на русском", but after select it looks "ўСѓС‚ РЅР° СЂСѓСЃСЃРєРѕРј "...
But when I am not using medoo
With mys…
-
[code]
$this->db->select("news", ["[>]news_cats" => ["cat_id" => "id"]], [
"news.*",
"news_cats.name"
], [
```
"ORDER" => "news.id DESC",
"LIMIT" => …