Server IP : 104.21.38.3 / Your IP : 172.69.176.161 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/libmysqld/examples/builder-sample/ |
Upload File : |
// Copyright (c) 2002, 2023, Oracle and/or its affiliates. // Use is subject to license terms. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License, version 2.0, // as published by the Free Software Foundation. // // This program is also distributed with certain software (including // but not limited to OpenSSL) that is licensed under separate terms, // as designated in a particular file or component or in included license // documentation. The authors of MySQL hereby grant you an additional // permission to link the program and your derivative works with the // separately licensed software that they have included with MySQL. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License, version 2.0, for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA //--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include "emb_samples.h" #include <winsock2.h> #include <mysql.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <deque.h> bool b_new_line = false; const char *server_groups[] = { "", "embedded", "server", NULL }; MYSQL *MySQL; deque<string> fill_rows(MYSQL_RES *res); //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TForm1 *Form1; //--------------------------------------------------------------------------- deque<string> fill_rows(MYSQL_RES *res) { MYSQL_ROW row; deque<string> rows; while ((row=mysql_fetch_row(res)) != 0) { mysql_field_seek(res,0); for (unsigned int i=0 ; i < mysql_num_fields(res); i++) rows.push_back(row[i]); } return rows; } //--------------------------------------------------------------------------- __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm1::Timer1Timer(TObject *Sender) { if (is_server_started) { ToggleButton->Caption = "Quit"; Timer1->Enabled = false; } } //--------------------------------------------------------------------------- void __fastcall TForm1::FormCreate(TObject *Sender) { is_server_started = false; computer_ip(); /* get the computer name and IP number */ /* init the tree database screen */ db_root = DBView->Items->Add(NULL, db_root_caption.UpperCase()); db_root->ImageIndex = 0; } //--------------------------------------------------------------------------- /* button which handle the init of mysql server or quit the app */ void __fastcall TForm1::ToggleButtonClick(TObject *Sender) { if (!is_server_started) { mysql_server_init(NULL, NULL, (char **)server_groups) ; connect_server(); get_dbs(); } else { mysql_server_end(); Close(); } } //--------------------------------------------------------------------------- void __fastcall TForm1::computer_ip(void) { WORD wVersionRequested; WSADATA WSAData; wVersionRequested = MAKEWORD(1,1); WSAStartup(wVersionRequested,&WSAData); hostent *P; char s[128]; in_addr in; char *P2; gethostname(s, 128); P = gethostbyname(s); db_root_caption = P->h_name; in.S_un.S_un_b.s_b1 = P->h_addr_list[0][0]; in.S_un.S_un_b.s_b2 = P->h_addr_list[0][1]; in.S_un.S_un_b.s_b3 = P->h_addr_list[0][2]; in.S_un.S_un_b.s_b4 = P->h_addr_list[0][3]; P2 = inet_ntoa(in); db_root_caption += " ( " + (AnsiString)P2 + " )"; } //--------------------------------------------------------------------------- bool __fastcall TForm1::connect_server() { bool ret_value = false; MySQL = mysql_init(MySQL); if (!MySQL) return ret_value; if (mysql_real_connect(MySQL, NULL, NULL, NULL, NULL, 0, NULL, 0)) { ret_value = true; is_server_started = true; } MySQL->reconnect= 1; return ret_value; } //--------------------------------------------------------------------------- void __fastcall TForm1::FormDestroy(TObject *Sender) { if (is_server_started) mysql_server_end(); } //--------------------------------------------------------------------------- void __fastcall TForm1::DBViewClick(TObject *Sender) { if (DBView->Selected != db_root && DBView->Selected != NULL) { get_tables(DBView->Selected->Text); clean_desc_grid(); } } //--------------------------------------------------------------------------- bool __fastcall TForm1::get_tables(String db_name) { MYSQL_RES *res; AnsiString s_cmd; TableView->Items->Clear(); s_cmd = "use "; s_cmd+= db_name.c_str(); if (mysql_query(MySQL, s_cmd.c_str()) || !(res=mysql_list_tables(MySQL,"%"))) return false; tables_node = TableView->Items->Add(NULL, db_name.c_str()); tables_node->ImageIndex = 1; tables_node->SelectedIndex = 1; deque<string> rows = fill_rows(res); mysql_free_result(res); fill_tree(rows,tables_tree,tables_node,TableView,2); return true; } //--------------------------------------------------------------------------- bool __fastcall TForm1::get_dbs(void) { MYSQL_RES *res; if (!is_server_started) return false; if (!(res=mysql_list_dbs(MySQL,"%"))) return false; deque<string> rows = fill_rows(res); mysql_free_result(res); fill_tree(rows,MySQLDbs,db_root,DBView,1); info_server->Text = mysql_get_server_info(MySQL); return true; } //--------------------------------------------------------------------------- void __fastcall TForm1::fill_tree(deque<string> rows, TTreeNode *root, TTreeNode *child, TTreeView *View, int image_index) { deque<string>::iterator r; for(r = rows.begin(); r != rows.end() ; r++) { root = View->Items->AddChild(child, (*r).c_str()); root->ImageIndex = image_index; root->SelectedIndex = image_index; } child->Expanded = true; } //--------------------------------------------------------------------------- bool __fastcall TForm1::get_desc_table(String table_name) { MYSQL_RES *res, *res1; MYSQL_ROW row; AnsiString use_db, show_cols, show_desc; unsigned int num_fields; int fields_control = 0, grid_row = 1, fields_number; b_new_line= true; clean_desc_grid(); use_db = "use "; use_db+= DBView->Selected->Text.c_str(); show_desc = "desc "; show_cols = "show full columns from "; show_cols+= table_name.c_str(); show_desc+= table_name.c_str(); if (mysql_query(MySQL, use_db.c_str() )) return false; if (mysql_query(MySQL, show_cols.c_str() ) || !(res1=mysql_store_result(MySQL))) { if (mysql_query(MySQL, show_desc.c_str() ) || !(res1=mysql_store_result(MySQL))) return false ; } mysql_fetch_row(res1); mysql_field_seek(res1,0); fields_number = (mysql_num_fields(res1) - 2); mysql_free_result(res1); if (mysql_query(MySQL, show_cols.c_str() ) || !(res=mysql_store_result(MySQL))) { if (mysql_query(MySQL, show_desc.c_str() ) || !(res=mysql_store_result(MySQL))) return false ; } titles_grid(); while ((row=mysql_fetch_row(res)) != 0) { mysql_field_seek(res,0); for (num_fields=0 ; num_fields < mysql_num_fields(res); num_fields++) { if (fields_control <= fields_number ) { desc_table_grid->Cells[fields_control][grid_row] = row[num_fields]; fields_control++; } else { desc_table_grid->Cells[(fields_control)][grid_row] = row[num_fields]; fields_control = 0; grid_row++ ; desc_table_grid->RowCount++; } } } desc_table_grid->RowCount--; mysql_free_result(res); return true; } //--------------------------------------------------------------------------- void __fastcall TForm1::TableViewClick(TObject *Sender) { if (DBView->Selected != db_root && DBView->Selected != NULL) if (DBView->Selected != tables_tree) get_desc_table(TableView->Selected->Text); } //--------------------------------------------------------------------------- void __fastcall TForm1::clean_desc_grid(void) { desc_table_grid->RowCount= 2; desc_table_grid->Cells[0][1] = ""; desc_table_grid->Cells[1][1] = ""; desc_table_grid->Cells[2][1] = ""; desc_table_grid->Cells[3][1] = ""; desc_table_grid->Cells[4][1] = ""; desc_table_grid->Cells[5][1] = ""; } //--------------------------------------------------------------------------- void __fastcall TForm1::titles_grid(void) { desc_table_grid->Cells[0][0] = "Field"; desc_table_grid->Cells[1][0] = "Type"; desc_table_grid->Cells[2][0] = "Null"; desc_table_grid->Cells[3][0] = "Key"; desc_table_grid->Cells[4][0] = "Default"; desc_table_grid->Cells[5][0] = "Extra"; desc_table_grid->Cells[6][0] = "Privileges"; }