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
Is it possible to submit a form with a dedicated button?
What is polymorphism with example in php?
Is it possible to extend the execution time of a php script?
How to copy a file?
What is use of header() function in php? What the limitation of header()?
Tell me what's the difference between include and require?
What is sticky form in php?
Is php a backend?
What is the value for this auto incremented field user_pri_id?
What is basic php?
What PHP stands for?
What is putenv?
What is string and its function?
What are the rules to determine the “truth” of any value which is not already of the boolean type?
What is trait in php?