-
medoo use:
SELECT \* FROM "radacct" WHERE "username" = '454175329@QQ.com' ORDER BY "radacctid" DESC LIMIT 10
because of the field include ‘“’,show error record.
This is the correct sql is:
SELECT …
-
I'm using version 1.1.2 and I'm getting this error.
`You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '"password"…
-
Hi,
I just update to the latest version and got a pdo error : invalid data source name
and a Undefined variable: dsn on line 134
I'm using mysql 5.6
do you know what's wrong ?
Thanks
-
Hello,
Is it possible to have AND + ORDER BY and LIMIT in 1 statement with medoo?
SQL Statement:
SELECT \* FROM table WHERE c1 = 1 AND c2 != 2 AND c3 > 0 ORDER BY c4 LIMIT 0, 20
My codes:
$sql->select…
-
Hi,
I have been developing with Medoo framework and I have a problem when I try to execute this code:
$data = $database->select(self::$mytable, ['id', 'point as ST_ASTEXT(point)], [deleted_date' => n…
-
`PHP Notice: Undefined property: medoo::$pdo in /home/baran/PhpstormProjects/papi/vendor/catfan/medoo/medoo.php on line 188`
i use medoo in my project for a while. i checkout project in a new pc and…
-
I cant find in the documentation where it shows how to add or if its compatible to use ssl certs for a pdo connections
-
Is there any way to get an -1 return if the update is in error?
thanks
-
I didn't find any documents for using LIMIT and OFFSET...
and this code didn't work:
`$datas = $database->select("notepad", [
"message_text"
], [
"ORDER" => "id DESC",
…
-
Hi
If you need this query:
Select a.name, b.name from section as a left join gallery as b on(a.idsection=b.section_idsection)
In the Medoo format:
$Data = $database->select("section",
…