okay.... here we go: i like to use a mysql database for some reasons, also there will be possible to create useraccounts like valve steam, phpbb, and so on, that users can login over the software and use the input from database, search the database and so on.
1. how do i creat at the best way a useraccount. because i'm new on it, i don't know which secure options i have to use for it, that it will be a best way to creat and manage useraccounts. currently i use the following way to create a new user:
Code: Select all
App->MyQuery->SQL->Text = "select * from Useraccounts";
App->MyQuery->Open();
App->MyQuery->Insert();
App->MyQuery->FieldByName("ID")->AsString = local_ID;
....
....
....
....
App->MyQuery->Post();2. also i have some questions on security with mysql remote access and MYDAC. how can i crypt the database passwort or is it already cryptet by MYDAC? because i saw **** in the objectinspetor by designtime.
3. how can i do a crypted login that no user can crab the database password over an packetsniffer? i saw MYDAC supports SSL, is that a good way to crypt logins to database?
hope you can help me