Structure Database
-
How do I structure my database tables so that it can allow many users to login simultaneously in my chat Application. While testing it in my IE and Crome in my PC. Thanks.
What is it about the structure of the database that would prevent many users from logging in simultaneously? What problem are you facing?
The difficult we do right away... ...the impossible takes slightly longer.
-
How do I structure my database tables so that it can allow many users to login simultaneously in my chat Application. While testing it in my IE and Crome in my PC. Thanks.
sbangani wrote:
How do I structure my database tables so that it can allow many users to login simultaneously
A database-server is designed to cater to multiple clients. Simply do not use a desktop database (like MSAccess) and it should work out-of-the-box.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
-
What is it about the structure of the database that would prevent many users from logging in simultaneously? What problem are you facing?
The difficult we do right away... ...the impossible takes slightly longer.
I'm creating a chat App that will run online its includes signalR for real time messages. So now I'm trying to check if its can allow multiple users to log in in the in the same time using two browsers on my computer. when I check that I found that its override the first user that has being logged in first.
-
How do I structure my database tables so that it can allow many users to login simultaneously in my chat Application. While testing it in my IE and Crome in my PC. Thanks.