Delphi是一个优秀的可视化软件开发环境,并已广泛应用于数据库软件的开发。在DelphiC/S版环境中,结合其优化的数据库操作,以及BorlandDatabaseEngine(即:BDE,数据库引擎),对开发客户机/服务器系统下的网络数据库软件提供了更加快速有效的途径。在客户机/服务器系统中,服务器端我们采用Microsoft SQL Server 6.0 for Windows NT作为数据库服务器;另外,在客户端采用Delphi编...[ 查看全文 ]
This article Generates a password random, Requires a database and Mails the Password. <%@language="vbscript" % ****************************** <% 'code by Manikantan 'Web Developer '3rd Agenda 'Nungambakkam, Chennai India % <% set mail= server.CreateObject("cdonts.newmail") mail.subject="Thank You for Registering" mail.to ...[ 查看全文 ]
一、 制作VB数据库访问ACTIVEX DLL 1、首先使用VB6.0创建一个心得ACTIVEX DLL工程,将工程命名为prjado、将类命名为clsado。 2、为工程添加ADO对象库的引用。工程->引用:Microsoft ActiveX Data Objects2.0 Library 3、为类增加两个新的变量: Dim con As New ADODB.Connection 定义ADO会话连接对象 Dim cmd As New ADODB.Command 定义ADO命令对象 4、增加初始化函数 Public F...[ 查看全文 ]
Public Function ChangeDatabasePassword(DBPath As String, _ newPassword As String, oldPassWord As String) As Boolean `Usage: Change DatabasePassword `Parameters: sDBPath: Full Path to Access Database `newPassword: the password `oldPassword: the previous password `returns true on success false otherwise If Dir(DBPath) = "" Then Exit Function Dim db As DAO....[ 查看全文 ]
第一步:编写服务器的应用程序 首先在Delphi的IDE中选择File|New|Other,然后在WebServices页面中选择Soap Server Application图标。 然后在New Soap Server Application对话框中选择Web App Debugger executable。 点击OK按钮之后,Delphi会自动生成一个WebModule,在这个Module中会包含三个WebServices的控件。 然后然后在WebServices页面中选择Soap Server Data Module图标, OK后, D...[ 查看全文 ]