BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Finding Interbase Servers on a network

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi Databases (InterBase Express)
View previous topic :: View next topic  
Author Message
Morpheus
Guest





PostPosted: Sat Apr 24, 2004 11:28 am    Post subject: Finding Interbase Servers on a network Reply with quote




Hi group,
I am writing a utility which works similar to MS QA, but it has a whole
bunch of added functionailty, like SQL Code generation capability, etc.
Since I use Interbase quite a lot as well, I have decided to make it work
with both platforms. I picked up soeme code in the
borland.public.delphi.database.sqlserver forum which allows one to find MS
SQL Servers on a netowrk from within a Delphi app. without using any of the
MS SQL Client Network libraries.
Is there any way of doing something similar for finding Interbase SQL
Servers?
Regards,
Morpheus


Back to top
Martijn Tonies
Guest





PostPosted: Sat Apr 24, 2004 4:18 pm    Post subject: Re: Finding Interbase Servers on a network Reply with quote



Hi Morpheus,

There's no way to detect IB servers.

As for the tool... Did you ever take a look at Database
Workbench? ( www.upscene.com )

It works with InterBase, MS SQL Server (and MSDE),
Firebird and MySQL. The same user interface for all
engines.


--
With regards,

Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL & MS SQL
Server.
Upscene Productions
http://www.upscene.com


Quote:
I am writing a utility which works similar to MS QA, but it has a whole
bunch of added functionailty, like SQL Code generation capability, etc.
Since I use Interbase quite a lot as well, I have decided to make it work
with both platforms. I picked up soeme code in the
borland.public.delphi.database.sqlserver forum which allows one to find MS
SQL Servers on a netowrk from within a Delphi app. without using any of
the
MS SQL Client Network libraries.
Is there any way of doing something similar for finding Interbase SQL
Servers?
Regards,
Morpheus





Back to top
Richard C
Guest





PostPosted: Tue Apr 27, 2004 9:44 pm    Post subject: Re: Finding Interbase Servers on a network Reply with quote



You could create a socket, bind it to port 3050 and attempt a connection to
the computers on the LAN. If IB is listening (on port 3050!) you will get
connected, just disconnect and assume it's an IB server...... works for me.

Richard
"Martijn Tonies" <m.tonies@upscene!nospam!.com> wrote

Quote:
Hi Morpheus,

There's no way to detect IB servers.

As for the tool... Did you ever take a look at Database
Workbench? ( www.upscene.com )

It works with InterBase, MS SQL Server (and MSDE),
Firebird and MySQL. The same user interface for all
engines.


--
With regards,

Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL & MS
SQL
Server.
Upscene Productions
http://www.upscene.com


I am writing a utility which works similar to MS QA, but it has a whole
bunch of added functionailty, like SQL Code generation capability, etc.
Since I use Interbase quite a lot as well, I have decided to make it
work
with both platforms. I picked up soeme code in the
borland.public.delphi.database.sqlserver forum which allows one to find
MS
SQL Servers on a netowrk from within a Delphi app. without using any of
the
MS SQL Client Network libraries.
Is there any way of doing something similar for finding Interbase SQL
Servers?
Regards,
Morpheus







Back to top
Morpheus
Guest





PostPosted: Wed Apr 28, 2004 7:22 am    Post subject: Re: Finding Interbase Servers on a network Reply with quote

Hi Robert,
Sounds just like what I need. I have not worked with sockets at all, so I am
a bit at sea. Do you perhaps have a code example that i might use?
Regards,
Norman

"Richard C" <richard at no spam dot wintaps dot com> wrote

Quote:
You could create a socket, bind it to port 3050 and attempt a connection
to
the computers on the LAN. If IB is listening (on port 3050!) you will get
connected, just disconnect and assume it's an IB server...... works for
me.

Richard
"Martijn Tonies" <m.tonies@upscene!nospam!.com> wrote in message
news:408a9335$1 (AT) newsgroups (DOT) borland.com...
Hi Morpheus,

There's no way to detect IB servers.

As for the tool... Did you ever take a look at Database
Workbench? ( www.upscene.com )

It works with InterBase, MS SQL Server (and MSDE),
Firebird and MySQL. The same user interface for all
engines.


--
With regards,

Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL & MS
SQL
Server.
Upscene Productions
http://www.upscene.com


I am writing a utility which works similar to MS QA, but it has a
whole
bunch of added functionailty, like SQL Code generation capability,
etc.
Since I use Interbase quite a lot as well, I have decided to make it
work
with both platforms. I picked up soeme code in the
borland.public.delphi.database.sqlserver forum which allows one to
find
MS
SQL Servers on a netowrk from within a Delphi app. without using any
of
the
MS SQL Client Network libraries.
Is there any way of doing something similar for finding Interbase SQL
Servers?
Regards,
Morpheus









Back to top
Morpheus
Guest





PostPosted: Wed Apr 28, 2004 7:26 am    Post subject: Re: Finding Interbase Servers on a network Reply with quote

Hi Richard,
Sounds just like what I need. I have not worked with sockets at all, so I am
a bit at sea. Do you perhaps have a code example that i might use?
Regards,
Norman
"Richard C" <richard at no spam dot wintaps dot com> wrote

Quote:
You could create a socket, bind it to port 3050 and attempt a connection
to
the computers on the LAN. If IB is listening (on port 3050!) you will get
connected, just disconnect and assume it's an IB server...... works for
me.

Richard
"Martijn Tonies" <m.tonies@upscene!nospam!.com> wrote in message
news:408a9335$1 (AT) newsgroups (DOT) borland.com...
Hi Morpheus,

There's no way to detect IB servers.

As for the tool... Did you ever take a look at Database
Workbench? ( www.upscene.com )

It works with InterBase, MS SQL Server (and MSDE),
Firebird and MySQL. The same user interface for all
engines.


--
With regards,

Martijn Tonies
Database Workbench - developer tool for InterBase, Firebird, MySQL & MS
SQL
Server.
Upscene Productions
http://www.upscene.com


I am writing a utility which works similar to MS QA, but it has a
whole
bunch of added functionailty, like SQL Code generation capability,
etc.
Since I use Interbase quite a lot as well, I have decided to make it
work
with both platforms. I picked up soeme code in the
borland.public.delphi.database.sqlserver forum which allows one to
find
MS
SQL Servers on a netowrk from within a Delphi app. without using any
of
the
MS SQL Client Network libraries.
Is there any way of doing something similar for finding Interbase SQL
Servers?
Regards,
Morpheus









Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi Databases (InterBase Express) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.