2

私のコードはvb.net.inバックエンドにあり、mysqlを使用しています。mysql テーブルには、最大 25 クローネのデータが含まれています。テーブルからデータセットにデータを移動したい。テーブルには、varchar データ型の電話番号として列が含まれています。そのデータ全体をデータセットに移動します。

エラー


接続タイムアウトのようなエラーが発生しています。コードに次の行を追加します

code
-----
 mycommand1 = New MySqlCommand("select fld_phonenumber from tbl_dndno ", myconnection1)
        ada = New MySqlDataAdapter(mycommand1)
        ada.SelectCommand.CommandTimeout = 0 ' the code to increase the command timeout for dataadapter.

        ada.Fill(ds1)
        myconnection1.Close()

データセットの値を見ることができなくなりました。コードは実行され続けます。結果またはエラーが表示されませんでした。これを手伝ってください。私はvb.netが初めてです

4

1 に答える 1

0

Why not move less data and let the user PAGE it (like page 1, page 2, page 3, etc) and only load maybe 100,000 or 200,00 or 300,000 or 400,000 or even 500,000 records on each load sequence?

after all even if you show 1000 records per page that still makes screen 100 pages each time you load it!

If its taking that long to load 20+ crore records.... It will take EVEN longer to RENDER the data to a page!!!

Also the option is there to load based upon FIRST ALPHABETIC letter.... After all if someone wants to find contact/person/id of SMITH then whats the point of loading JONES, BAKER, PATEL, KHAN??

于 2013-01-01T02:41:51.057 に答える