Jump to content
UBot Underground

[Free] Plugin Large Data


Recommended Posts

Kev I am loving your plugin here.  But a question,  I have a large table loaded but when I try to add a new row it flips an error on me telling me that I have exceeded the range.  So how can I increase the size?

 

Thanks!

 

BUddy

Link to post
Share on other sites
  • Replies 209
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

My latest free plugin good for large table data storing   commands and functions are   http://robobest.com/wp-content/uploads/2014/04/bigdatacommands.png   http://robobest.com/wp-content/uploads/2014/

I edit my above comment before seeing your response. If your reading from file yes if this are already in memory no keep as is.

Much Appreciated Work KEV downloaded and will try now   

Kev I am loving your plugin here.  But a question,  I have a large table loaded but when I try to add a new row it flips an error on me telling me that I have exceeded the range.  So how can I increase the size?

 

Thanks!

 

BUddy

 

Hi BUddy,

 

you can not change the size of an existing table directly. You could write the additional data to a new table and then use:

Combine large tables

 

Or you can use the

"Large Table bulk input"  command

 

The best way depends a little bit on what you want to do. And if your are using threading or not. 

Bulk input had some performance impact in the past. 

 

I currently create local lists / tables within my threads. Add the data to that local list/table and then use the "add large list to list" or "combine large table" commands at the end of my threads.

And don't forget to delete the local list/table at the end of the thread as well. To free up some resources.

 

Dan

Link to post
Share on other sites

I'll probably use my existing UBot Table code and then use "Ubot Table to Large Table".

 

Thanks for the response.

 

Buddy

you can also over specify the size of the table when creating and then simply remove the additional not used rows with the Large table Remove empty command.

 

plugin command("Bigtable.dll", "Large table Remove empty", "testtable", 0)

 

 

Link to post
Share on other sites

Also is there a way to save large list to file?

 

UPDATE: Never mind I figured out how to save it using the save to file command and the return large list function

Link to post
Share on other sites

Is there a way to Remove Item from Large list or Next Large List Item?

 

Similar to the ones already integrated on ubot normal list?

no next list item no plans to add.

 

is it this command remove from list(%mylist, 0)

currently not in the plugin but I can add it.

Link to post
Share on other sites

yeah the remove item from list is what I am looking to do so I can use the data correctly

 

that way I can always use large list item position 0 once I am done using it I just remove it from the list and save the file. Doing that when ubot crashes ( as usual) you end up with a file that you cna use to pick up from where it left off. I hope I am making sense.

Link to post
Share on other sites

Hey kev,

 

I love your plugin but I've found a bug. All special chars (like ä,ü,ö) were converted to � is there a way to fix it?

Edited by CTSchmidt
Link to post
Share on other sites
  • 2 weeks later...

Hello kev123, how can I use the list commands with the scrape attribute? or is there another way of scraping that I have to use with plug-in?

Link to post
Share on other sites

Hey kev,

 

I love your plugin but I've found a bug. All special chars (like ä,ü,ö) were converted to � is there a way to fix it?

is this using a certain command or all commands?

any movement on the remove item from large list?

going to send a major update out at weekend it will be in it.

Link to post
Share on other sites

Update 1.4

 

added

 

clear all list
Number of Large tables
Number of Large list
large list from text
Large list from regex
Large list from xpath
large table copy row
remove list item

 

fix

Fixed a error in combine tables

 

improvements

whole plugin rewritten to improve and maintain reliability of threads at high speed.

 

 

updated plugin sent via email,

  • Like 1
Link to post
Share on other sites

Hey Kev,

 

http://screencast.com/t/eSe5iv3PqTs

 

I believe I encountered an error.  I have been running my bot for a while now but after I updated this was the first failure.

 

I am gearing back down to version 1.3

 

Thanks.

 

Buddy

thanks for reporting already fixed 

My fault for trying to improve something at the last min and forgetting to test.

 

i'll send the update out shortly.

 

thanks

Kev

Link to post
Share on other sites

What's the best way to update an item in a LARGE LIST? Should I be using a Large Table and use the SET LARGE TABLE CELL instead?

 

plugin command("Bigtable.dll""Large list Remove item""test", 10)

plugin command("Bigtable.dll""Large list insert""test", 10, "New Data")

 

But I normally use a Large Table with SET LARGE TABLE CELL

 

Dan

Link to post
Share on other sites

plugin command("Bigtable.dll""Large list Remove item""test", 10)

plugin command("Bigtable.dll""Large list insert""test", 10, "New Data")

 

But I normally use a Large Table with SET LARGE TABLE CELL

 

Dan

what Dan said. When you move to the type of use you require I would always recommend moving to tables.

Link to post
Share on other sites

plugin command("Bigtable.dll""Large list Remove item""test", 10)

plugin command("Bigtable.dll""Large list insert""test", 10, "New Data")

 

But I normally use a Large Table with SET LARGE TABLE CELL

 

Dan

 

 

what Dan said. When you move to the type of use you require I would always recommend moving to tables.

 

Thanks guys.

 

Tables it is from now on.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...