SQL Interacting with Form - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Database Programming (https://www.supportforums.net/forumdisplay.php?fid=28) +---- Thread: SQL Interacting with Form (/showthread.php?tid=791) |
SQL Interacting with Form - Cppsean - 10-08-2009 Few things to know before answering: Programming Lang: VB Programming Database Lang: SQL Alright, I really need to understand how the VB form interacts with the SQL DB, now does it immediately interact such as Form->(ROOT)DB Or is it Form->Server->(ROOT)DB If someone could explain that would be great! Thanks guys P.S. I am from Hack Forums! RE: SQL Interacting with Form - Apache Server - 10-09-2009 can u explain me in detail wat u exactly want to know RE: SQL Interacting with Form - Akshay* - 10-09-2009 wat is ur Qusetion exactly RE: SQL Interacting with Form - Omniscient - 10-19-2009 Or is it Form->Server->(ROOT)DB That's how. The database is a seperate service from the http server and requires compatibility usually in the form of a module or a language. For PHP it's standard to the installation where PERL will require an addon usually. For something like VB or any php script you can view examples here of the interation between php and mysql. http://us2.php.net/manual/en/book.mysql.php |