php mysql share data to msql
I have a set of mysql data that i want to share to a friend using asp.net.
My question is what is the best way for me to share some tables. He can read o开发者_StackOverflow社区nly the datas.
Thanks in advance.
you can simply give access to mysql db
You may create View of the tables for which you want other application to allow.
Just create another account that can access the database and give the account limited access rights. So he will only be able to read the data and not edit the data. But using asp you can create a website of sorts that displays the data to your friend in a easy to read format. But personally I am a php fan
精彩评论