| View previous topic :: View next topic |
| Author |
Message |
med1112 Guest
|
Posted: Wed Apr 21, 2004 9:27 pm Post subject: Ways to Connect Delphi to SQL Server |
|
|
for building an application client/server, what's the best way for connecting Delphi 7.0 to SQL Server 2000.
Please provide me the input for the ways to connect Delphi to SQL Server and how ??
|
|
| Back to top |
|
 |
quinn wildman Guest
|
Posted: Wed Apr 21, 2004 9:46 pm Post subject: Re: Ways to Connect Delphi to SQL Server |
|
|
Use ADO.
med1112 wrote:
| Quote: | for building an application client/server, what's the best way for connecting Delphi 7.0 to SQL Server 2000.
Please provide me the input for the ways to connect Delphi to SQL Server and how ??
|
|
|
| Back to top |
|
 |
Miroslav Penchev Guest
|
Posted: Thu Apr 22, 2004 8:36 am Post subject: Re: Ways to Connect Delphi to SQL Server |
|
|
Or better - use dbExpress.
--
Miroslav Penchev
Technical Manager, BSC Group
POBox 446
Varna 9000
BULGARIA
Tel/Fax +359 52 600182
E-mail: [email]Miroslav.Penchev (AT) bsc (DOT) bg[/email]
Web: www.bsc.bg
|
|
| Back to top |
|
 |
RandChris Guest
|
Posted: Thu Apr 22, 2004 10:28 pm Post subject: Re: Ways to Connect Delphi to SQL Server |
|
|
dbexpress is good, but if you need to update records or traverse you
have to use clientdatasets and providers. ADO uses bi-directional
cursors by default. You can use a TADOquery and update tables easier.
There are pros and cons do doing this. The cono to ADO is that if you
bind directly to the database table using a TADOQuery you don't have
suffucient control over the data being written to your table. Also,
direct and contiuous connections create more network traffic.
Miroslav Penchev wrote:
| Quote: | Use ADO.
Or better - use dbExpress.
--
Miroslav Penchev
Technical Manager, BSC Group
POBox 446
Varna 9000
BULGARIA
Tel/Fax +359 52 600182
E-mail: [email]Miroslav.Penchev (AT) bsc (DOT) bg[/email]
Web: www.bsc.bg
|
|
|
| Back to top |
|
 |
Daniel Alvarez Guest
|
Posted: Fri Apr 23, 2004 2:10 pm Post subject: Re: Ways to Connect Delphi to SQL Server |
|
|
Don't think twice... SQL Direct!!!!
--
Daniel E. Alvarez
IMS Soluciones Tecnológicas S.A.
[email]quilate (AT) kropol (DOT) com.ar[/email]
"med1112" <med1112 (AT) yahoo (DOT) fr> wrote
| Quote: |
for building an application client/server, what's the best way for
connecting Delphi 7.0 to SQL Server 2000.
Please provide me the input for the ways to connect Delphi to SQL Server
and how ??
|
|
|
| Back to top |
|
 |
|