Is it possible to connect to a Microsoft Access database
without a DSN? If so, how??
Answer Posted / ghan shyam
yes it is posible to connect ms access database without dsn
you have to provide Driver for database and database path in odbc_connect function. like :
odbc_connect(DRIVER={Microsoft Access Driver
(*.mdb)}; DBQ="{database path}", "{db username if any}"
, "{db_password if any}") or die("could not connect to database");
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain php split() function.
Tell me what the difference between the 'bitwise and' operator and the 'logical and' operator?
What is the actually used php version?
Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?
What is T_PAAMAYIM_NEKUDOTAYIM?
What is a php array?
What are php keywords?
What is the use of array_search() in php?
What is difference between isset and empty in php?
What is difference between compile time and run time polymorphism?
What is artisan in php?
What is htaccess in php?
How to get the position of the character in a string in php?
What is meant by public, private, protected, static and final scopes?
Can I include php in javascript?