Tagged Questions
The limitations tag has no wiki summary.
75
votes
7answers
22k views
How many concurrent AJAX (XmlHttpRequest) requests are allowed in popular browsers?
In Firefox 3, the answer is 6 per domain: as soon as a 7th XmlHttpRequest (on any tab) to the same domain is fired, it is queued until one of the other 6 finish.
What are the numbers for the other ...
19
votes
7answers
2k views
What limitations have closures in Python compared to language X closures?
Where X is any programming language (C#, Javascript, Lisp, Perl, Ruby, Scheme, etc) which supports some flavour of closures.
Some limitations are mentioned in the Closures in Python (compared to ...
14
votes
6answers
751 views
What is your experience with Android webapps (limitations, tips, best practices)?
Update: As François mentioned, there are alternatives such as Phone Gap for a more cross-platform approach. It's a very good suggestion indeed. I'm open to any suggestions and I would really ...
12
votes
7answers
27k views
How to put more than 1000 values into an Oracle IN clause
Is there any way to get around the Oracle 10g limitation of 1000 items in a static IN clause? I have a comma delimited list of many of IDs that I want to use in an IN clause, Sometimes this list can ...
10
votes
2answers
642 views
What are the limitations of a STA thread in compare to MTA threads?
If we make a thread STA like this: Thread.SetApartmentState(STA); then it cannot run code marked with [MTAThread] attribute.
We have seen [STAThread] in windows and console applications but I have ...
10
votes
5answers
621 views
Accurately accessing VB6 limitations
As antiquated and painful as it is - I work at a company that continues to actively use VB6 for a large project. In fact, 18 months ago we came up against the 32k identifier limit.
Not willing to ...
9
votes
10answers
2k views
Why no switch on pointers?
For instance:
#include <stdio.h>
void why_cant_we_switch_him(void *ptr)
{
switch (ptr) {
case NULL:
printf("NULL!\n");
break;
default:
...
7
votes
6answers
3k views
Does C++ limit recursion depth?
In Python there is a maximum recursion depth. Seems it is because Python is an interpreter, not a compiler. Does C++ have the same concept? Or it only connected with RAM limit?
7
votes
6answers
3k views
How do I create a (32-bit) .NET application to use 3 GB RAM?
I am creating a .NET application (C#) that needs to use a lot of RAM. I recently knew that on 32-bit versions of Windows XP I can only use 2 GB, unless I use the /3Gb switch, and set the ...
6
votes
3answers
125 views
Times when inline functioning cannot be used
Im studying inline functions in C++ and have come to a section concerning limitations of its use. It says:
The compiler also cannot perform
inlining if the address of the
function is taken ...
6
votes
7answers
1k views
What are the disadvantages in using Garbage Collection?
Most of the modern languages have built in garbage collection (GC). e.g. Java, .NET languages, Ruby, etc. Indeed GC simplifies application development in many ways.
I am interested to know the ...
5
votes
2answers
427 views
What is max length for an C/C++ identifier on common (build) systems?
I don't remember the standard saying something of the max length for identifiers so in theory they can be long. In real life, those names could be limited by at least the compiler and linker ...
5
votes
1answer
303 views
Where are tables in Mnesia located?
I try to compare Mnesia with more traditional databases.
As I understand it tables in Mnesia can be located to (see Memory consumption in Mnesia):
ram_copies - tables are stored in ets, so no ...
5
votes
5answers
896 views
JSON limitation?
I would like to know if JSON with AJAX has a limitation to the amount of data an outgoing and returning parameter can carry?
I would like to be able to send and return from the server a file with ...
5
votes
6answers
3k views
What to do with “The input line is too long” error message?
I am trying to use os.system() to call another program that takes an input and an output file. The command I use is ~250 characters due to the long folder names.
When I try to call the command, I'm ...
5
votes
6answers
1k views
What happen in SQL 2005 when it run out of number for an autonumber column?
What happen when SQL Server 2005 happen to reach the maximum for an IDENTITY column? Does it start from the beginning and start refilling the gap?
What is the behavior of SQL Server 2005 when it ...
4
votes
2answers
78 views
Template methods and template classes C++
Can class member functions be template functions, or must they be static class functions. Basically can the class and the function be technically instantiated separately on demand?
What are the ...
4
votes
1answer
289 views
.NET Micro framework and unsupported features. What is the impact?
I found this table listing the limitations of the .NET Micro framework in embedded development, it states that generics are not available due to the size of the image this would create. The memory ...
4
votes
3answers
699 views
.NET GDI+ image size - file codec limitations
Is there a limit on the size of image that can be encoded using the image file codecs available from .NET?
I'm trying to encode images > 4GB in size, but it simply does not work (or does not work ...
4
votes
1answer
588 views
Oracle - Determine maximum supported size for regular expression
I have a regular expression that throws ORA-12733, "regular expression is too long". How do I determine what the maximum supported size is?
FYI: the offending regex is 892 characters. It's a ...
4
votes
1answer
407 views
Limited matrices in Ruby
How come the Matrix class has no methods to edit it's vectors and components? It seems like everything inside a matrix could be read but not written. Am I mistaking? Is there some third-party elegant ...
4
votes
6answers
454 views
MySQL limitations
When using MySQL 5.1 Enterprise after years of using other database products like Sybase, Infomix, DB2; I run into things that MySQL just doesn't do. For example, it can only generate an EXPLAIN query ...
4
votes
10answers
1k views
How many rows of data is too many rows of data?
Is there some hard and fast rule about how big is too big for a SQL table?
We are storing SCORM tracking data in a name/value pair format and there could be anywhere from 4-12 rows per user per ...
3
votes
2answers
102 views
Limitations of Dynamic Programming algorithm
After exploring this question I came to realize that dynamic programming algorithms can't be used to solve knapsack problem or similar problems with a non-integer constraint. Am I right about my ...
3
votes
3answers
75 views
C# Limit user to filling out form only once
I'm looking to create a simple web form, and I would like to "discourage" users from filling a form out multiple times. The metrics of the form are used for statistical analysis, and each time a user ...
3
votes
1answer
295 views
What are the limitations of CLR Assemblies for SQL Server 2008?
I am planning some reports with quite a heavy load of calculations, which I thought is better to transfer to a custom .NET assembly loaded to Microsoft SQL Server. The companies who will use this ...
3
votes
3answers
986 views
Extjs: (TimeField) reset minValue and maxValue
I have an ExtJS TimeField where I use the setMinValue(...) and setMaxValue(...) to only show the valid time-elements to the user. This works just fine, but how do I reset the minValue and maxValue so ...
3
votes
1answer
461 views
SharpSSH's Scp object can't copy files bigger than 2GB
Whenever I try to copy a file that's bigger than 2GB, I get an array index out of bounds exception in the Get method:
Scp myScp = new Scp("remotehost", "joe", "mypassword");
myScp.OnTransferProgress ...
3
votes
1answer
136 views
Deliberate Clojure symbol name limitations or inherited?
In Common LISP I can do:
(setf a1 'a)
(setf 1a 'b)
In clojure I can do the first (ignoring the fact that setf and def work differently)
(def a1 'a)
but with the second I get an error
(def 1a ...
3
votes
2answers
74 views
how can i limit the selection in MySQL?
I am confuse on how to limit selection in MySQL (e.g SELECT * FROM tblProduction LIMIT 1,N;) where N is unknown.. Can anyone help me on how can I limit the selection in MySQL? I want to show the ...
3
votes
2answers
1k views
What is the maximum number of joins allowed in SQL Server 2008?
What is the maximum number of joins allowed in SQL Server 2008?
3
votes
2answers
742 views
Are there any length limits on PHP echo?
I have this script that fetches some data from mysql and then uses echo to output it.
But, as the page have grown and gotten longer all of a sudden i have this weird behavior where it cuts of the end ...
3
votes
4answers
1k views
C/C++ Control Structure Limitations?
I have heard of a limitation in VC++ (not sure which version) on the number of nested if statements (somewhere in the ballpark of 300). The code was of the form:
if (a) ...
else if (b) ...
else if ...
3
votes
2answers
432 views
Sharepoint performance under heavy load and capacity limitations
I'm working on a new storage system for a business solution package that consists of around 40 applications. Some of those applications generate documents (mostly docx, some pdf) that are currently ...
3
votes
4answers
2k views
oracle where in limitation to 1000 / hibernate
Oracle knows the limitation to 1000 elements in the where a in (..) clause. Does this limitation also exist when using Hibernate in conjuction with Oracle?
3
votes
4answers
6k views
mysql Varchar size limit
Can anyone provide me a quick input on how mysql treat varchar data type size.
For Example: - If I have a column in table with field with Varchar(15) and if I try to insert data of length 16, then it ...
3
votes
2answers
1k views
JRuby limitations when working with Java Classes
As far as I understand JRuby, it is perfectly possible to use Java class inside JRuby code and vice versa, however, I still don't understand few things.
can JRuby work with Java Annotations?
is it ...
3
votes
5answers
128 views
Are some logical paths inherently untestable?
I have been using TDD to drive the project that I am currently working on and the results have been fairly satisfying. I did run into a problem (described here; still without a solution or any ...
3
votes
1answer
942 views
What are the limitations for bookmark names in Microsoft Word?
I need to bookmark parts of a document from the name of paragraphs but the name of a paragraph is not always a valid name for a bookmark name. I have not found on Google or MSDN an exhaustive list of ...
3
votes
3answers
5k views
2GB limit on file size when using fwrite in C?
I have a short C program that writes into a file until there is no more space on disk:
#include <stdio.h>
int main(void) {
char c[] = "abcdefghij";
size_t rez;
FILE *f = ...
3
votes
3answers
339 views
Requests limit per hour
How to limit requests per hour from one IP like it is in Twitter? For example, I want to provide 100 requests per hour. Is there any solution? Apache modules? Thanks.
3
votes
1answer
2k views
What is Excel 2007 workbook Name size limit? Why?
Workbook names in Excel 2007 are supposed to be limited in size only by memory, but this appears not to be the case. Eventually, an array saved to a name will get big enough that when you try to save ...
3
votes
9answers
195 views
What advantages can be gained and what pitfalls need to be understood when using Ajax?
The following is a very vague and incomplete list of advantages and pitfalls that I am aware of. I would really appreciate it if anyone more knowledgeable in this area could help expend on these...
...
2
votes
1answer
138 views
What are the limitations of SqlDependency
I am using using a table as a message queue and "signing up" for up for updates by using a SqlDependency. Everywhere I read people are saying look out for the limitations of it but not specifically ...
2
votes
1answer
470 views
SQL Server 2008 Express Edition file size limitation problem
The SQL Server error I encounter as below:
Could not allocate space for object 'dbo.xxx'.'PK_xxx' in database 'mainDB' because the 'PRIMARY' filegroup is full. Create disk space by deleting ...
2
votes
1answer
546 views
Core Data Limitations for iOS
Is there any limitations exist in Core Data? e.g; how many max rows can be in a table/Entity? How much data can reside in the DB?
In general if some document can describe all kind of limitations ...
2
votes
1answer
760 views
Google Maps, Bing Maps, OpenStreetMaps and MapQuest limitation
I'm very confused reading the online term of use of some Online Map Service (like Google Maps, Bing Maps, OpenStreetMaps and Mapquest)...
There is a way to use Google or Bing Maps on a website for ...
2
votes
2answers
487 views
max mysql queries per minute
How many queries does the slave can handle per minute?
In my case, I used the show status like '%questions%' and found that after the interval of 1 minute, around 5,000 queries were executed.
Is it ...
2
votes
2answers
971 views
Does Visual Studio 2010 express prevents Source Controls plugins?
I try to install this plugin on my Visual Studio 2010 Express : http://gitscc.codeplex.com/
But I can't find it in the plugin repository, the "Source Control" category of plugins is empty, is that ...
2
votes
1answer
160 views
XTS size limitation
Good morning,
My question saga continues about R.
I have been working on large datasets lately (more than 400 thousands lines).
So far, I have been using XTS format, which worked fine for "small" ...