DB Connection
DB Connection
Nerd247
Posts: 1Questions: 1Answers: 0
Just start process and Created a table with Table Editor, Here is the error I get when I run the HTML page created.
DataTables warning: table id=tabling - An error occurred while connecting to the database ''. The error reported by the server was: could not find driver.
How do I fix this?
This discussion has been closed.
Answers
if you are using SQL Server you try to install
https://www.microsoft.com/en-us/download/details.aspx?id=8363
It sounds like the PDO driver for whatever database server you are using isn't installed in your PHP server. You can check what drivers are installed using a
phpinfo()
page and checking the PDO section.Allan