| View previous topic :: View next topic |
| Author |
Message |
Detlef Kroeze Guest
|
Posted: Sun May 16, 2004 8:43 am Post subject: Delphi 7 / mssql running without delphi 7 installed |
|
|
Hi,
I created a D7 app connecting a mssql 2000 database. But i can't get it
running on a workstation where D7 is NOT installed. (DB connection error)
Witch drivers are needed for in this case to get it running
Tnx
Detlef Kroeze
The Netherlands
|
|
| Back to top |
|
 |
Viatcheslav V. Vassiliev Guest
|
Posted: Sun May 16, 2004 9:14 am Post subject: Re: Delphi 7 / mssql running without delphi 7 installed |
|
|
What is error? For MS SQL Server installing MDAC is enough - it is installed
on most computers but you may try to update it to the latest version from
http://www.microsoft.com/data.
Check also connection parameters (connection string in ADO or similar) and
look that there are no your computer specific settings (paths, user name,
password that may be not working on another computer). If server is on
another PC, check network settings (firewall etc.)
//------------------------------------------
Regards,
Vassiliev V. V.
http://www.managed-vcl.com - using .Net objects in Delphi for Win32 +
ADO.Net
http://www.oledbdirect.com - The fastest way to access MS SQL Server,
MS Jet (Access) and Interbase (through OLEDB)
"Detlef Kroeze" <detlef.kroeze (AT) wanadoo (DOT) nl> сообщил/сообщила в новостях
следующее: news:40a729b6$1 (AT) newsgroups (DOT) borland.com...
| Quote: | Hi,
I created a D7 app connecting a mssql 2000 database. But i can't get it
running on a workstation where D7 is NOT installed. (DB connection error)
Witch drivers are needed for in this case to get it running
Tnx
Detlef Kroeze
The Netherlands
|
|
|
| Back to top |
|
 |
Bill Todd (TeamB) Guest
|
Posted: Sun May 16, 2004 1:48 pm Post subject: Re: Delphi 7 / mssql running without delphi 7 installed |
|
|
What data access components are you using?
What is the error message?
--
Bill (TeamB)
(TeamB cannot respond to questions received via email)
|
|
| Back to top |
|
 |
Hermann Guest
|
Posted: Sun May 16, 2004 2:50 pm Post subject: Re: Delphi 7 / mssql running without delphi 7 installed |
|
|
Hi,
If you use dbexpress, only the dbexpmss.dll is needed.
and, if your app uses a remote sql server, its client-side
software (msde etc.) must be installed.
regards
Hermann
"Detlef Kroeze" <detlef.kroeze (AT) wanadoo (DOT) nl> п╢хКоШо╒пбне
:40a729b6$1 (AT) newsgroups (DOT) borland.com...
| Quote: | Hi,
I created a D7 app connecting a mssql 2000 database. But i can't get it
running on a workstation where D7 is NOT installed. (DB connection error)
Witch drivers are needed for in this case to get it running
Tnx
Detlef Kroeze
The Netherlands
|
|
|
| Back to top |
|
 |
Dennis Passmore Guest
|
Posted: Sun May 16, 2004 4:22 pm Post subject: Re: Delphi 7 / mssql running without delphi 7 installed |
|
|
It sounds like you might have used a "Sql Server" connection type in which case you might
have to manaully install the Ntwdblib.dll from your Ms Sql server since it is not
automatically installed anymore.
Dennis Passmore
Ultimate Software, Inc.
|
|
| Back to top |
|
 |
Jeremy Collins Guest
|
Posted: Mon May 17, 2004 8:04 am Post subject: Re: Delphi 7 / mssql running without delphi 7 installed |
|
|
Hermann wrote:
| Quote: | Hi,
If you use dbexpress, only the dbexpmss.dll is needed.
and, if your app uses a remote sql server, its client-side
software (msde etc.) must be installed.
|
MSDE is *not* the client-side software for a remote SQL
Server, it is a limited server version of SQL Server.
For ADO access to SQL Server the client just needs
MDAC installed (Windows 2000 and up have this installed
by default).
--
jc
Remove the -not from email
|
|
| Back to top |
|
 |
|