Console.Write("{0}{1}{2}\n", indent, indent, "type_of_cols, data_type of columns: 'INT', 'TINYINT', 'SMALLINT', 'BIGINT', 'FLOAT', 'DOUBLE', 'BINARY'. Default is 'INT'.");
Console.Write("{0}{1}", indent, "-w");
Console.Write("{0}{1}{2}\n", indent, indent, "length_of_binary, The length of data_type 'BINARY'. Only applicable when type of cols is 'BINARY'. Default is 8");
Console.Write("{0}{1}", indent, "-l");
Console.Write("{0}{1}{2}\n", indent, indent, "num_of_cols_per_record, The number of columns per record. Default is 3.");
HelpPrint("-h <hostname>","host, The host to connect to TDengine. Default is localhost.");
HelpPrint("-p <port>","port, The TCP/IP port number to use for the connection. Default is 0.");
HelpPrint("-u <username>","user, The user name to use when connecting to the server. Default is 'root'.");
HelpPrint("-P <password>","password, The password to use when connecting to the server. Default is 'taosdata'.");
HelpPrint("-d <dbname>","database, Destination database. Default is 'test'.");
HelpPrint("-a <replications>","replica, Set the replica parameters of the database, Default 1, min: 1, max: 5.");
HelpPrint("-m <table prefix>","table_prefix, Table prefix name. Default is 't'.");
HelpPrint("-M","stable, Use super table.");
HelpPrint("-s <stable prefix>","stable_prefix, STable prefix name. Default is 'st'");
HelpPrint("-Q <DEFAULT | command>","query, Execute query command. set 'DEFAULT' means select * from each table");
/* NOT SUPPORT SO FAR
HelpPrint("-o", "outputfile, Direct output to the named file. Default is './output.txt'.");
HelpPrint("-q", "query_mode, Query mode--0: SYNC, 1: ASYNC. Default is SYNC.");
HelpPrint("-b", "type_of_cols, data_type of columns: 'INT', 'TINYINT', 'SMALLINT', 'BIGINT', 'FLOAT', 'DOUBLE', 'BINARY'. Default is 'INT'.");
HelpPrint("-w", "length_of_binary, The length of data_type 'BINARY'. Only applicable when type of cols is 'BINARY'. Default is 8");
HelpPrint("-l", "num_of_cols_per_record, The number of columns per record. Default is 3.");
*/
Console.Write("{0}{1}",indent,"-T");
Console.Write("{0}{1}{2}\n",indent,indent,"num_of_threads, The number of threads. Default is 10.");
Console.Write("{0}{1}",indent,"-r");
Console.Write("{0}{1}{2}\n",indent,indent,"num_of_records_per_req, The number of records per request. Default is 1000.");
Console.Write("{0}{1}",indent,"-t");
Console.Write("{0}{1}{2}\n",indent,indent,"num_of_tables, The number of tables. Default is 1.");
Console.Write("{0}{1}",indent,"-n");
Console.Write("{0}{1}{2}\n",indent,indent,"num_of_records_per_table, The number of records per table. Default is 1.");
Console.Write("{0}{1}",indent,"-c");
Console.Write("{0}{1}{2}\n",indent,indent,"config_directory, Configuration directory. Default is '/etc/taos/'.");
Console.Write("{0}{1}",indent,"-x");
Console.Write("{0}{1}{2}\n",indent,indent,"flag, Insert only flag.");
Console.Write("{0}{1}",indent,"-O");
Console.Write("{0}{1}{2}\n",indent,indent,"order, Insert mode--0: In order, 1: Out of order. Default is in order.");
Console.Write("{0}{1}",indent,"-R");
Console.Write("{0}{1}{2}\n",indent,indent,"rate, Out of order data's rate--if order=1 Default 10, min: 0, max: 50.");
Console.Write("{0}{1}",indent,"-D");
Console.Write("{0}{1}{2}\n",indent,indent,"Delete data methods 0: don't delete, 1: delete by table, 2: delete by stable, 3: delete by database.");