Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do write data to a database

Status
Not open for further replies.

shook81

Technical User
Feb 5, 2004
2
US
I want to write two var servertime and clientime to an access database (c:\database\storetime.mdb) with a table called Store and just has the two fields Store Time and Client Time. I'm just trying to learn how to write data to a database and not having much luck

Thanks



<html>

<head>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=windows-1252&quot;>
<meta name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage 4.0&quot;>
<meta name=&quot;ProgId&quot; content=&quot;FrontPage.Editor.Document&quot;>
<title>New Page 1</title>
</head>

<body>




<SCRIPT LANGUAGE=VBSCRIPT RUNAT=Server>

Dim ServerTime
ServerTime = Time

</SCRIPT>
<BR>
<p>

<SCRIPT LANGUAGE=VBSCRIPT>
Dim ClientTIme
ClientTime = Time

</Script>


</body>

</html>
 
Here's a great tutorial:


[tt]

google.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top