Would 2 tier be a valid choice for this scenario:
sql server database
the business would never require more than a couple of hundred simultaneous connections
to the shared database over a LAN
the fact that (I believe) it is a lot less effort to develop a 2 tier
application
Client program updates automated over the LAN
...
I have a database with LDAP login enabled. It works fine when logging in through the PIA or when logging into app-designer through the application server.
I need to make app-designer allow me to login with 2-tier mode using LDAP authentication. Is this possible without customization?
...
I have the task to create a tier 2 application as follows:
MSSQL Database <-> Server <-> n-Client (n for many)
The client sends data to the server. The server selects stuff from the database and then sends it back to the client. Currently I am doing that with Records and SendDataToSocket(url is below).
I want to use TDBGrid on the cli...
My team is maintaining a huge Client Server win32 Delphi application. It is a client/server application (Thick client) that uses DevArt (SDAC) components to connect to SQL Server.
The business logic is often "trapped" in Component's event handlers, anyway with some degree of refactoring it is doable to move the business logic in common ...