摘要:
USE `xxdb`; SELECT CONCAT( 'ALTER TABLE ' ,TABLE_NAME ,' ENGINE=MyISAM; ') as `sql-commands-for-convert-engine` FROM information_schema.TABLES AS t WHERE TABLE_SCHEMA = 'xijishopdb' AND TABL... 阅读全文
摘要:
declare v_tName varchar(50); v_sqlanalyze varchar(500); v_num number; v_sql varchar(500); cursor c1 is select table_name from user_tables; begin open c1; loop fetch c1 into v_tName; if c1%found then... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Runtime.CompilerServices; using System.Windows.Forms; namespace TestProject { public class InvokeProxy { ... 阅读全文