简体   繁体   中英

MariaDB single user account for simultaneous queries possible?

Im developing a database application using MariaDB where I have a table for clients registers . I want them to be able to query the database, but I don't know if I have to create a database user account for each one in order to allow simultanious connections without collitions(same user trying to query at the same time) or can I use the same user account for simultanieous queries.

I'm kind of new to MariaDB. Thanks in advise.

Databases are good at handling 'simultaneous' accesses by multiple connections to the same table.

The question of "one" versus "many" user accounts is independent of simultaneous access.

Most accesses work just fine without any problem. In the extreme, I suggest you read about "deadlocks".

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM