how to connect user name of the login members with their data in dataset/Collection

I had created a dataset/collection I just want to know who saved data by username so how can I connect their user name in the column name of their dataset. I have the owner id but how do I get their names in the dataset/collection

Are you using the WIX Login module? Or is it a custom login page? You could add a field to your dataset/collection and every dataset/collection update could have the last user that did the update.

For your purposes you will need either the USER or the OWNER-ID of the logged-in-user.

When you say → Log-in-name —> do you mean user-email? Or do you really use a user-name?

It would be more simple to use user-e-mail for log-in. Why?
Because you could get the user-email of the loged-in-user directly with this code here…(and also the ID).
https://www.wix.com/velo/reference/wix-users/currentuser

Than you could search for the User/Owner-ID in your DB for the data of the current logged-in-user.

Yes,iam using wix login module

how can I connect their user name in the column ‘name’ of their dataset.

I have usernames in privatememberdata but how can call usernames from it to my form dataset

@sougandhr
This one could help you out…
https://www.wix.com/velo/reference/wix-users-backend/getuser

ThankYou @russian-dima