offline - Using MySQL for a local database -
i have written program client manages orders photography/souvenir business. however, trying implement dbms him can analysis of relevant trends on time.
the client's machine standalone windows 8 pc.
i attempting use mysql doesn't wish purchase ms access. however, wants stored locally on same machine takes orders on. how go setting up? new database management detail helpful!
you can follow mysql's documentation install. have gui.
once installed make sure add strong root password.
i create database myawesomenewdatabase
data. create user application use limited database.
grant privileges on myawesomenewdatabase.* 'user'@'localhost' identified 'password';
then application can use 'user' , 'password' communicate. specifying localhost
means 'user' can log in if on machine, indicated case.
you indicated vb.net. need install mysql-connector-net
then in visual studio add reference dlls. codeproject has tutorial on this.
Comments
Post a Comment