本文整理汇总了PHP中module::execsql方法的典型用法代码示例。如果您正苦于以下问题:PHP module::execsql方法的具体用法?PHP module::execsql怎么用?PHP module::execsql使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类module
的用法示例。
在下文中一共展示了module::execsql方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: drop_tables
function drop_tables()
{
module::execsql("DROP TABLE `m_consult_lab_radiology`;");
module::execsql("DROP TABLE `m_lib_rad_facility`;");
module::execsql("DROP TABLE `m_lib_rad_dxcodes`;");
module::execsql("DROP TABLE `m_lib_rad_types`;");
}
示例2: drop_tables
function drop_tables()
{
if (func_num_args() > 0) {
$arg_list = func_get_args();
}
module::execsql("DROP TABLE `m_lib_weekly_calendar`");
}
示例3: drop_tables
function drop_tables() {
//
// called from delete_module()
//
module::execsql("DROP TABLE `m_lib_wtforage`");
}
示例4: drop_tables
function drop_tables()
{
//
// called from delete_module()
//
module::execsql("DROP TABLE `m_news`;");
}
示例5: drop_tables
function drop_tables()
{
module::execsql("DROP TABLE `m_consult_report`;");
module::execsql("DROP TABLE `m_patient_consult_tcl`;");
module::execsql("DROP TABLE `m_consult_report_dailyservice`;");
module::execsql("DROP TABLE `m_consult_ccdev_report_dailyservice`;");
module::execsql("DROP TABLE `m_consult_mc_report_dailyservice`;");
}
示例6: drop_tables
function drop_tables()
{
//
// called from delete_module()
//
module::execsql("DROP TABLE `m_patient_pregnancy`;");
module::execsql("DROP TABLE `m_consult_pregnancy`;");
}
示例7: drop_tables
function drop_tables() {
module::execsql("SET foreign_key_checks=0;");
module::execsql("DROP TABLE `m_consult_diagnosis`;");
module::execsql("DROP TABLE `m_consult_complaint`;");
module::execsql("DROP TABLE `m_healthcenter_modules`;");
module::execsql("DROP TABLE `m_consult_vitals`;");
module::execsql("DROP TABLE `m_consult_ptgroup`;");
module::execsql("DROP TABLE `m_consult`;");
module::execsql("DROP TABLE `m_lib_supply_source`");
module::execsql("SET foreign_key_checks=1;");
}
示例8: drop_tables
function drop_tables() {
module::execsql("SET foreign_key_checks=0;");
module::execsql("DROP TABLE `m_consult_mc_labs_request`;");
module::execsql("DROP TABLE `m_consult_mc_prenatal`;");
module::execsql("DROP TABLE `m_consult_mc_postpartum`;");
module::execsql("DROP TABLE `m_consult_mc_visit_risk`;");
module::execsql("DROP TABLE `m_consult_mc_services`;");
module::execsql("DROP TABLE `m_consult_mc_vaccine`;");
module::execsql("DROP TABLE `m_patient_mc`;");
module::execsql("DROP TABLE `m_lib_mc_risk_factors`;");
module::execsql("DROP TABLE `m_lib_mc_outcome`;");
module::execsql("DROP TABLE `m_lib_mc_vaccines`;");
module::execsql("DROP TABLE `m_lib_mc_services`;");
module::execsql("DROP TABLE `m_lib_mc_birth_attendant`;");
module::execsql("SET foreign_key_checks=1;");
}
示例9: drop_tables
function drop_tables() {
module::execsql("set foreign_key_checks=0;");
module::execsql("DROP TABLE `m_consult_notes_complaint`;");
module::execsql("DROP TABLE `m_consult_notes_dxclass`;");
module::execsql("DROP TABLE `m_lib_notes_dxclass`;");
module::execsql("DROP TABLE `m_lib_notes_template`;");
module::execsql("DROP TABLE `m_consult_notes`;");
module::execsql("set foreign_key_checks=1;");
}
示例10: drop_tables
function drop_tables()
{
module::execsql("DROP TABLE `m_lib_laboratory`;");
module::execsql("SET foreign_key_checks=0; DROP TABLE `m_consult_lab`; SET foreign_key_checks=1; ");
}
示例11: drop_tables
function drop_tables()
{
module::execsql("DROP table m_patient_fp");
module::execsql("DROP table m_lib_fp_methods");
module::execsql("DROP table m_lib_fp_history_cat");
module::execsql("DROP table m_lib_fp_history");
module::execsql("DROP table m_lib_fp_pe_cat");
module::execsql("DROP table m_lib_fp_pe");
module::execsql("DROP table m_lib_fp_pelvic_cat");
module::execsql("DROP table m_lib_fp_pelvic");
}
示例12: drop_sql
function drop_sql()
{
module::execsql("DROP TABLE m_consult_lab_hematology");
}
示例13: drop_tables
function drop_tables()
{
module::execsql("set foreign_key_checks=0;");
module::execsql("DROP TABLE `m_consult_fp_services`;");
module::execsql("DROP TABLE `m_consult_fp_hx`;");
module::execsql("DROP TABLE `m_consult_fp_pe`;");
module::execsql("DROP TABLE `m_consult_fp_pelvic_exam`;");
module::execsql("DROP TABLE `m_lib_fp_history_cat`;");
module::execsql("DROP TABLE `m_lib_fp_history`;");
module::execsql("DROP TABLE `m_lib_fp_methods`;");
module::execsql("DROP TABLE `m_patient_fp`;");
module::execsql("set foreign_key_checks=1;");
}
示例14: drop_tables
function drop_tables() {
module::execsql("DROP TABLE `m_quotations`;");
}
示例15: drop_tables
function drop_tables() {
//
// pay attention to order of deletion
// to prevent foerign key constraint errors
//
module::execsql("DROP TABLE `m_family_address`;");
module::execsql("DROP TABLE `m_family_members`;");
module::execsql("DROP TABLE `m_family`;");
}