|
|
|
| Web Hosting Guide |
![]() ![]() |
Connecting Ms Access To Php Using Odbc |
Jul 27 2006, 10:41 AM
Post
#1
|
|
|
Member [ Level 2 ] Group: Members Posts: 54 Joined: 28-May 06 Member No.: 13,691 |
Dear Friends
I have been trying to connect Ms Access using PHP for couples of days. Finally I have done it. It was dome using Open DataBase Connectivity, popularly known as ODBC (pronounced as separate letters). With an ODBC connection, you can connect to any database, on any computer in your network, as long as an ODBC connection is available. Here is how to create an ODBC connection to a MS Access Database: Open the Administrative Tools icon in your Control Panel. Double-click on the Data Sources (ODBC) icon inside. Choose the System DSN tab. Click on Add in the System DSN tab. Select the Microsoft Access Driver. Click Finish. In the next screen, click Select to locate the database. Give the database a Data Source Name (DSN). Click OK. Note that this configuration has to be done on the computer where your web site is located. If you are running Internet Information Server (IIS) on your own computer, the instructions above will work, but if your web site is located on a remote server, you have to have physical access to that server, or ask your web host to to set up a DSN for you to use. -------------------------------------------------------------------------------- Connecting to an ODBC The odbc_connect() function is used to connect to an ODBC data source. The function takes four parameters: the data source name, username, password, and an optional cursor type. The odbc_exec() function is used to execute an SQL statement. Example The following example creates a connection to a DSN called northwind, with no username and no password. It then creates an SQL and executes it: $conn=odbc_connect('northwind','',''); $sql="SELECT * FROM customers"; $rs=odbc_exec($conn,$sql); -------------------------------------------------------------------------------- Retrieving Records The odbc_fetch_rows() function is used to return records from the result-set. This function returns true if it is able to return rows, otherwise false. The function takes two parameters: the ODBC result identifier and an optional row number: odbc_fetch_row($rs) -------------------------------------------------------------------------------- Retrieving Fields from a Record The odbc_result() function is used to read fields from a record. This function takes two parameters: the ODBC result identifier and a field number or name. The code line below returns the value of the first field from the record: $compname=odbc_result($rs,1); The code line below returns the value of a field called "CompanyName": $compname=odbc_result($rs,"CompanyName"); -------------------------------------------------------------------------------- Closing an ODBC Connection The odbc_close() function is used to close an ODBC connection. odbc_close($conn); -------------------------------------------------------------------------------- An ODBC Example The following example shows how to first create a database connection, then a result-set, and then display the data in an HTML table. <html> <body><?php $conn=odbc_connect('northwind','',''); if (!$conn) {exit("Connection Failed: " . $conn);} $sql="SELECT * FROM customers"; $rs=odbc_exec($conn,$sql); if (!$rs) {exit("Error in SQL");} echo "<table><tr>"; echo "<th>Companyname</th>"; echo "<th>Contactname</th></tr>"; while (odbc_fetch_row($rs)) { $compname=odbc_result($rs,"CompanyName"); $conname=odbc_result($rs,"ContactName"); echo "<tr><td>$compname</td>"; echo "<td>$conname</td></tr>"; } odbc_close($conn); echo "</table>"; ?></body> </html> |
|
|
|
Jul 30 2006, 10:35 AM
Post
#2
|
|
|
Super Member Group: [HOSTED] Posts: 876 Joined: 8-April 06 From: Lima - Peru Member No.: 12,579 myCENTs:13.21 |
Excellent job vicky99, very concise and easy to understand, i think it would be very helpful for those people who work or will work with this kind of configuration.
BTW, some time ago i work in a similar configuration and i spend a lot of time to make it work. Best regards, |
|
|
|
Feb 3 2008, 01:25 PM
Post
#3
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 0 Joined: 1-November 07 Member No.: 25,869 |
How can one connect to a database using DNS on another computer not running Webserver?
_________________________________ Http://smsmail.T35.Com |
|
|
|
Feb 3 2008, 05:15 PM
Post
#4
|
|
|
Way Out Of Control - You need a life :) Group: [MODERATOR] Posts: 2,941 Joined: 16-August 05 Member No.: 7,896 myCENTs:54.70 |
QUOTE(FeedBacker @ Feb 3 2008, 02:25 PM) [snapback]118089[/snapback] How can one connect to a database using DNS on another computer not running Webserver? _________________________________ Http://smsmail.T35.Com Hi, You are right, here at astahost we have our own database and then the hosname is "localhost". If you connect to another database server, which allows accessing from other hosts, in the connect string the database server is simply the DNS name of the database server. I used this frequently some years ago, before being hosted here. Usually, you must have an account at the database server name, and when you create the database, the server automatically gives you the connect statement. Here it looks like : QUOTE $dbh=mysql_connect ("localhost", "myname_agbook1", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error()); mysql_select_db ("myname_agbook1"); On a remote database server the name will not be "localhost", it will probably be a dnsname like dnsprovider.host3 |
|
|
|
Apr 2 2008, 06:30 PM
Post
#5
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 0 Joined: 1-November 07 Member No.: 25,869 |
How to connect to a remote Access Database
Connecting Ms Access To Php Using Odbc Replying to yordan How would I go about connecting to an MS Access database on another computer via PHP? I've been trying to use odbc extensions to do it but with no avail. -question by Michael |
|
|
|
May 6 2008, 07:47 AM
Post
#6
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 0 Joined: 1-November 07 Member No.: 25,869 |
How do i connect my website to an Ms Access Database
Connecting Ms Access To Php Using Odbc Hello, am final year student at Makerere University in Uganda Am developing a dynamic website for manufacturibg firm as my dissertation. So please I wanted your help me on how I can link my website to a database to post customer orders and their comments. Thanks -question by Senyonga Henry |
|
|
|
Jul 9 2009, 05:08 AM
Post
#7
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 0 Joined: 1-November 07 Member No.: 25,869 |
how to create form in access using fields in SQL server and the form need to be connected using PHP???
Connecting Ms Access To Php Using Odbc I need to develope a form in access,using database in SQL server. The situation is like when user (with no internet connection PC) filled up the form (in access),they will upload the form into the system (using other PC with internet connection).The system (uses PHP) will take only the information filled by the user and automatically update the information inside the SQL server database...Need suggestion. |
|
|
|
Aug 24 2009, 04:58 AM
Post
#8
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 0 Joined: 1-November 07 Member No.: 25,869 |
How to get the number of rows
Connecting Ms Access To Php Using Odbc Thank you for what was published so far. I would also like to know how I can get the number of rows returned from the query. Is this possible, using Access ODBC? -question by Kris |
|
|
|
Oct 8 2009, 07:56 PM
Post
#9
|
|
|
Don't Worry, I'm here Group: Members Posts: 239 Joined: 3-October 09 From: Northeast, United States of America Member No.: 43,278 myCENTs:21.01 |
Now that is cool.
|
|
|
|
![]() ![]() |
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
Similar Topics
| Topic Title | Replies | Topic Starter | Views | Last Action | |||
|---|---|---|---|---|---|---|---|
![]() |
7 | amit nigam | 1,198 | 4th November 2009 - 12:33 AM Last post by: HannahI |
|||
![]() |
14 | sandeep | 2,276 | 3rd November 2009 - 09:11 PM Last post by: iG-rick |
|||
![]() |
7 | Eggie | 182 | 17th October 2009 - 02:01 PM Last post by: yordan |
|||
![]() |
10 | himanshurulez | 3,387 | 16th October 2009 - 08:59 AM Last post by: iG-mike |
|||
![]() |
11 | soleimanian | 4,272 | 8th October 2009 - 07:57 PM Last post by: HannahI |
|||
![]() |
8 | WeaponX | 2,149 | 8th October 2009 - 07:54 PM Last post by: HannahI |
|||
![]() |
11 | dserban | 1,337 | 8th October 2009 - 07:47 PM Last post by: HannahI |
|||
![]() |
4 | Kushika | 2,753 | 23rd September 2009 - 03:16 PM Last post by: iG-Lynn |
|||
![]() |
2 | ljj | 769 | 18th July 2009 - 11:49 AM Last post by: iG-vasanth.a |
|||
![]() |
1 | astdesy | 383 | 27th May 2009 - 04:57 PM Last post by: dougeg |
|||
![]() |
1 | kencycles | 769 | 7th May 2009 - 03:43 AM Last post by: iG-merv |
|||
![]() |
6 | dhanesh | 1,165 | 25th April 2009 - 08:43 AM Last post by: iG-faulkj |
|||
![]() |
3 | dipesh | 632 | 25th April 2009 - 05:01 AM Last post by: TavoxPeru |
|||
![]() |
1 | falcorassassin | 627 | 8th April 2009 - 11:37 AM Last post by: iG-Francis |
|||
![]() |
0 | joe.k | 277 | 26th March 2009 - 05:17 PM Last post by: joe.k |
|||
|
Lo-Fi Version | Time is now: 8th November 2009 - 06:47 PM |
© 2009 AstaHost: Free Web Hosting & Technical Discussion, Free Web Hosting. a member of xisto.
Powered by Invision Board. Skin: IPB Forum Skins
Expand / Collapse Navigation



Jul 27 2006, 10:41 AM




