mysqlnd Questions
2
Solved
If you try to connect with PHP PDO to the newest Version of mariadb (11.3.2) you will see this error and the client will be unable to connect:
SQLSTATE[HY000] [2054] Server sent charset (0) unknown...
6
Solved
I'm trying to dockerize my website. I've got Nginx and PHP up and running and it's working find except I can't connect to a db. When the page is loaded I get the error:
Fatal error: Uncaught Error...
5
Solved
I am having a problem in my PHP script where values called from MySQL are being returned as strings, despite being marked in the database as int and tinyint.
This is a problem because when convert...
3
Solved
It might be a duplication of many questions however i dont seem to get my answer from any of the questions present.I am using multi domain linux hosting provided by hostgator.I tried to use mysqli_...
2
Solved
I want to know the different between MySQL Native Driver and MySQL Client Library and when to use both of them
6
Solved
6
Solved
Maybe it's an obvious question, but I want to be sure.
How can i know if it MySQLnd is the active driver?
I'm runing PHP 5.3 and MySQL 5.1.37.
In phpinfo() mysqlnd is listed but only with this I ...
2
They seem to be the same thing, and yet different. I don't know which one is which: I know we can use PDO as new PDO() and use prepare() and query() methods, to fetch data from database. So, if thi...
Palembang asked 23/1, 2017 at 17:56
1
Solved
I have Windows 2003 Server. Apache 2.4.10, PHP 5.4.31 and MySQL 5.6.19 installed. There are two wordpress website running on server.
In the phpinfo(); under mysqlnd section there says;
active_con...
2
We just upgraded to php 5.6 from php 5.4, and everything was working fine with our MySQL connecting using MySQLi and SSL.
Our connection looks like:
mysqli_real_connect($db, $host, $username, $pa...
2
I know that there have been a lot of questions raised with the same concern as mine, but I hope you can help me find out another solution for this.
We are using Symfony 2.5.10, PHP 5.4.44 and MySQ...
Louralourdes asked 22/10, 2015 at 4:4
2
Solved
Setup
I'm working with php and mysql in this situation.
Let's say I have my mysqli connection like this:
$link = new mysqli('localhost', 'root', 'password', 'A_Database');
I have installed mysqlnd...
Neutralize asked 3/4, 2014 at 16:11
1
Solved
I am writing a simple test script to get my head around MySQLi prepared statements. This script will become the basis for a function that needs to be slightly dynamic in its handling of results. I ...
2
Solved
Since i've moved a site of mine to a new vServer, I always get this error message
Fatal error: Call to undefined method mysqli_stmt::get_result()
These lines of code are working fine
$mys...
Nikaniki asked 19/1, 2014 at 22:0
3
Solved
I have problems with PHP in Ubuntu 10.04. When I try use mysqli_result::fetch_all this error appears:
Call to undefined method mysqli_result::fetch_all()
However, it works in Windows XP.
The Cod...
1
© 2022 - 2024 — McMap. All rights reserved.