Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Programming

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 26-07-2004, 10:34 AM
Rizalnet's Avatar
Novice Webmaster
 
Join Date: Jun 2002
Location: Serdang
Posts: 22
Rep Power: 0
Rizalnet is on a distinguished road
ASP & Topspeed database

kalau guna ms access database boleh guna cara ni

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
%>

tapi macam mana kalau nak guna Topspeed database (*.tps)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 07-08-2004, 07:24 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 768
Rep Power: 100
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
ASP,VBScript atau VisualBasic Pakai nih...

dah download driver odbc topspeed tu? pastu import

contoh code:

<%
Dim Conn
Dim ConnectionString
Dim Recordset1

set Conn = Server.CreateObject("ADODB.Connection")
ConnectionString = "dsn=TopSpeedDataBase;"

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.Open "SELECT * FROM TableNameHere", ConnectionString , 1,3

Do While Not Recordset1.EOF %>

<%=Recordset1("id")%>
<%=Recordset1("FirstName")%>
<%=Recordset1("LastName")%>

<%
Recordset1.MoveNext
Loop
Recordset1.Close
%>
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP Database Access alvinhan Website Programming 4 11-12-2003 01:31 PM
database in website..!! lanxc_7 Webmaster Tools 8 18-08-2003 12:05 AM
ASP Access Database alvinhan Website Programming 1 25-11-2002 10:01 AM
php and sybase database kasih Website Programming 0 11-10-2002 03:39 PM
OOP dan Database kidino Website Programming 0 07-10-2002 06:25 PM



All times are GMT +8. The time now is 05:28 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59