vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   MySQL question (https://vborg.vbsupport.ru/showthread.php?t=109784)

Lea Verou 03-08-2006 03:08 AM

MySQL question
 
How can I make my queries that for instance add a table, or a column in an existing table, or drop a table or a column perform it regardless of whether the table or the column exist or not? This would be very useful for install/uninstall codes so that a product can be overwritten or uninstalled regardless if the installation was completed succesfully.
Will just a "@" before the function accomplish this?

Code Monkey 03-08-2006 01:01 PM

If I get your meaning, then just use incremental install sections by product version number. You have the original installs code under install section with the original install version number. Leave that permanent. Then add changes and additions under new higher version numbers.

As long as the version number is higher than the users current version it will run it. You can check my Articlebot install for an example.

Lea Verou 03-08-2006 01:06 PM

Yes but small bugfixes do not increase the version number and even if they do, the code will become very complicated after some editions. For the install code I want for instance, if a table/field exists to do nothing. If it doesn't exist to install it, but with an easy way. I don't have the time and courage to write hundreds of lines for just install/uninstall code. :(

Code Monkey 03-08-2006 01:10 PM

If everyone had mysql 5 you could probably do it easy. Unfortunately.....

I just increment the version number by 0.0.1 for bugfixes and consolidate older version installs as time goes by.

Also. You should be putting your db codes between these vb functions.

PHP Code:

$db->hide_errors();

//code here

$db->show_errors(); 

Then it will do as you want if the user clicks "overwrites on". It will ignore all errors.

Lea Verou 03-08-2006 04:03 PM

Hmmm I'll try that, thanks :)


All times are GMT. The time now is 10:48 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00944 seconds
  • Memory Usage 1,716KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete