largenomad.blogg.se

How to use wamp server with vb.net
How to use wamp server with vb.net




how to use wamp server with vb.net
  1. #How to use wamp server with vb.net portable
  2. #How to use wamp server with vb.net password

Just right click on the table, select ‘create new’ then click on stored routine. If you are like me, and you didn’t save the stored routine a while ago. You have to change it because the stored routing may treat your parameter as the field name if you don’t do so. And that name, ‘prods’ will be used as a parameter name. For example, if you have ‘PRODUCT’ field, you might want to change that to ‘prods’. What you’ll want to do now is to create names which are similar to the fields in your table. To do that, just right click on your table then select ‘edit’. The first thing that you’ll gonna need to do after that, is to put a routing name, I put ‘creates’ but you can put whichever you like:Īfter that, you might want to check the fields that are in your table. Right click it, select ‘create new’ then click on ‘stored routine’. What you’ll have to do now, is to select your desired database, then select your table.

#How to use wamp server with vb.net password

You can create them on either Heidi SQL or in phpmyadmin.Īfter doing that, open up heidi sql then input your password if you have one. Please create a database, and a table within it if you don’t already have one.

#How to use wamp server with vb.net portable

Heidi SQL (Portable or installer version will do, but I prefer the portable version)Īfter downloading and installing the requirements above, your now ready to create stored procedures. Security- because if anyone tries to peak at your applications source code, they will only see stored procedure calls, instead of sql queries.Ģ.

how to use wamp server with vb.net

Portability- your sql queries are stored in the database itself, so you don’t have to worry about database manipulation if ever your application is not with you.ģ. And also if your tables has only about a hundred records, you wont notice much difference in speed.Ģ. Faster data retrieval- although there won’t be much speed you will get if you are only fetching from a database with barely 2-3 tables. When I say hard-coded sql statements, it means that the sql queries used to create, update, delete, or view records in your database is in the application itself.ġ. In this tutorial, I will show you how you can convert your bare sql statements that is hard-coded in your vb.net application into stored procedure calls.






How to use wamp server with vb.net