Exists is a keyword or function in many languages, especially in SQL.
571
votes
17answers
213k views
Is there an “exists” function for jQuery?
How can I check the existence of an element in jQuery?
The current code that I have is this:
if ($(selector).length>0) {
// Do something
}
Is there is a more elegant way to approach this? ...
60
votes
9answers
42k views
Best way to test if a row exists in a MySQL table
I'm trying to find out if a row exists in a table. Using MySQL, is it better to do a query like this:
SELECT COUNT(*) AS total FROM table1 WHERE ...
and check to see if the total is non-zero or is ...
50
votes
5answers
41k views
If one of two elements exists, do something
I currently do this to check if one of two elements exists:
if ($(".element1").length > 0 || $(".element2").length > 0) {
//do stuff...
}
Is there a better way to rewrite the same? I mean, ...
43
votes
11answers
46k views
how to check if a directory exists in a makefile
I need to generate a directory in my makefile and I would like to not get the "directory already exists error" over and over even though I can easily ignore it.
I mainly use mingw/msys but would like ...
38
votes
8answers
55k views
How to check if mysql database exists
Is it possible to check if a (MySQL) database exists after having made a connection.
I know how to check if a table exists in a DB, but I need to check if the DB exists. If not I have to call another ...
38
votes
4answers
42k views
INSERT IF NOT EXISTS ELSE UPDATE?
I've found a few "would be" solutions for the classic "How do I insert a new record or update one if it already exists" but I cannot get any of them to work in SQLite.
I have a table defined as ...
38
votes
2answers
10k views
is_file or file_exists in PHP
I need to check if a file is on HDD at a specified location ($path.$file_name).
Which is the difference between is_file() and file_exists() functions and which is better/faster to use in PHP?
37
votes
6answers
41k views
How to check if a file exists and is readable in C++?
I've got a fstream my_file("test.txt"), but I don't know if test.txt exists. In case it exists, I would like to know if I can read it, too. How to do that?
I use Linux.
31
votes
2answers
23k views
LINQ - Where not exists
What is the equivalent of following statement in LINQ:
Select t1.appname, t1.julianDte, t1.cat
From table1 t1
Where NOT EXISTS
( Select *
from table t2
where t1.cat = t2.cat AND ...
29
votes
3answers
23k views
check if a div exists with jquery [duplicate]
Possible Duplicate:
Is there an “exists” function for jQuery
yes, i know this has been asked a lot.
but, it confuses me, since the results on google for this search,
shows ...
26
votes
7answers
53k views
How to check if element exists in the visible DOM?
Hello good people of stack overflow,
I would like to pick your brain. My question is this: how do you test an element for existence without the use of the getElementById method. I have setup a live ...
26
votes
4answers
951 views
what does “exists” mean in Haskell type system?
I'm struggling to understand the exists keyword in relation to Haskell type system. As far as I know, there is no such keyword in Haskell by default, but:
There are extensions which add them, in ...
24
votes
5answers
28k views
JavaScript check if variable exists (is defined/initialized) - Which method is better?
Which method of checking if a variable has been initialized is better/correct?
(Assuming the variable could hold anything (string, int, object, function, etc.))
if (elem) {
or
if (typeof(elem) !== ...
20
votes
4answers
4k views
Check if multiple strings exist in another string
How can I check if any of the strings in an array exists in another string?
Like:
a = ['a', 'b', 'c']
str = "a123"
if a in str:
print "some of the strings found in str"
else:
print "no strings ...
16
votes
5answers
6k views
How can you check to see if a file exists (on the remote server) in Capistrano?
Like many others I've seen in the Googleverse, I fell victim to the File.exists? trap, which of course checks your local file system, not the server you are deploying to.
I found one result that used ...
16
votes
5answers
12k views
Check if an include (or require) exists
How do you check if an include / require_once exists before you call it, I tried putting it in an error block, but PHP didn't like that.
I think file_exists() would work with some effort, however ...
15
votes
4answers
18k views
Best way to check if object exists in Entity Framework?
What is the best way to check if an object exists in the database from a performance point of view? I'm using Entity Framework 1.0 (ASP.NET 3.5 SP1).
15
votes
11answers
24k views
SQL: Return “true” if list of records exists?
An alternative title might be:
Check for existence of multiple rows?
Using a combination of SQL and C# I want a method to return true if all products in a list exist in a table. If it can be done ...
13
votes
12answers
16k views
MySQL > Table doesn't exist. But it does (or it should)
I did change the datadir of a MySQL installation and following some steps it worked fine. Every base I had was moved correctly but one.
I can connect and USE the database, even SHOW TABLES returns me ...
12
votes
6answers
9k views
Checking if a directory exists in Unix (system call)
I am not able to find a solution to my problem online.
I would like to call a function in Unix, pass in the path of a directory, and know if it exists. opendir() returns an error if a directory does ...
12
votes
2answers
13k views
How to check if a file exists on a server using c# and the WebClient class
In my application I use the WebClient class to download files from a Webserver by simply calling the DownloadFile method. Now I need to check whether a certain file exists prior to downloading it (or ...
11
votes
6answers
46k views
MySql - Create Table If Not Exists Else Truncate?
Here is the updated question:
the current query is doing something like:
$sql1 = "TRUNCATE TABLE fubar";
$sql2 = "CREATE TEMPORARY TABLE IF NOT EXISTS fubar SELECT id, name FROM barfu";
The first ...
11
votes
6answers
4k views
Check if twitter username exists
Is there a way to check if a twitter username exists?
Without being authenticated with OAuth or the twitter basic authentication?
10
votes
6answers
829 views
SQL-Query: EXISTS in Subtable
I have two tables tabData and tabDataDetail.
I want all idData(PK) from Parent-Table(tabData) that have only rows in Child-Table(tabDataDetail, FK is fiData) with:
fiActionCode=11 alone
or
...
9
votes
6answers
21k views
C# Cannot check Session exists?
I get an error when I do the following:
if(Session["value"] != null)
{
// code
}
The error i get is this:
Object reference not set to an instance of an object.
Why is this? I always check my ...
9
votes
3answers
7k views
NHibernate: CreateCriteria and Exists clause
How can I write the following SQL using CreateCriteria:
SELECT * FROM FooBar fb
WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id)
9
votes
4answers
12k views
The quick way to check if SELECT EXISTS(…) returns a value, using PHP?
I am trying to quickly determine if a user_ID is the owner of a 'goal'. I believe my SQL query is good, but I'm trying to find a nice way of checking the result!
In this case, no matter what I put ...
9
votes
9answers
8k views
Check if a database table exists using PHP/PDO
I want to check if a table with a specific name exists in a database I've connected to using PHP and PDO.
It has to work on all database backends, like MySQL, SQLite, etc.
9
votes
6answers
4k views
JavaScript if var exists
I want my code so that if a specific var exists it will perform an action, else it will be ignored and move along. The problem with my code is, if the specific var does not exist it causes an error, ...
9
votes
7answers
5k views
Actionscript3: Does variable exist?
I'm a little bit new to Actionscript, but I can't figure this one out. I've done a lot of searching on this topic and haven't found a clear answer. I've tried the following solutions that people ...
9
votes
4answers
3k views
jQuery: Check if jQuery object contains exact DOM element
I have a reference to a DOM element, and a jQuery object which is the result of a selector, and I want to check if that specific DOM element is in that jQuery object. Short of looping through the ...
9
votes
6answers
336 views
Which is faster, EXISTS before or after the INSERT?
I have an SP in SQL Server which runs hundreds of times a minute, and needs to check incoming traffic against a database. At the moment it does the following
INSERT INTO table
SELECT @value1,@value2 ...
8
votes
5answers
16k views
C++ - Determining if directory (not a file) exists in Linux
How would I determine if a directory (not a file) existed using C++ in Linux? I tried using the stat() function but it returned positive when a file was found. I only want to find if the inputted ...
8
votes
1answer
8k views
PostgreSQL error: Fatal: role “username” does not exist
I'm setting up my PostgreSQL 9.1 under ubuntu.
I can't do anything with PostgreSQL: can't createdb, can't createuser; all operations return the error message
Fatal: role h9uest does not exist
...
8
votes
4answers
2k views
Is EXISTS more efficient than COUNT(*)>0?
I'm using MySQL 5.1, and I have a query that's roughly of the form:
select count(*) from mytable where a = "foo" and b = "bar";
In my program, the only thing that it checks is whether this is zero ...
8
votes
1answer
3k views
How do I cause an error in MSBuild if a file exists?
We have a process that runs prior to our nightly builds. If the process fails it generates a text file. All I need to do is check to see if the file exists, and if it does, cause a failing MSBuild.
...
7
votes
5answers
21k views
C# - Delete files from directory if filename contains a certain word
I need to check a directory to see if there are any files whos file name contains a specific keyword and if there are, to delete them. Is this possible?
Example:
If there are any files in ...
7
votes
2answers
10k views
Ruby on Rails - Check if a directory/file/symlink exists with one command
Is there a single way of detecting if a directory/file/symlink or.... entity (more generalized) exists?
I need a single function because I need to check an array of paths that could be directories, ...
7
votes
6answers
2k views
Is File.Exists an expensive operation?
Re: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
Does anyone know if this is a particularly slow or locking operation which could impact server performance in a large ...
7
votes
1answer
173 views
Do List.Exist using Linq
I want to check if any of the items in a list has a field set to true
at the moment I do this:
bool isPaid = visit.Referrals.Exists(delegate(AReferral r)
{
...
7
votes
3answers
1k views
The purpose of SQL's EXISTS and NOT EXISTS
Every now and then I see these being used, but it never seems to be anything that can't be performed as equally well, if not better, by using a normal join or subquery.
I see them as being misleading ...
7
votes
2answers
160 views
check if variable exists in the workspace with cellfun
Consider the following example:
dat1 = 1;
dat2 = 2;
Variables = {'dat1','dat2'};
a = cellfun(@(x)exist(x,'var'),Variables);
for i = 1:length(Variables);
a2(i) = exist(Variables{i},'var');
end
...
6
votes
4answers
847 views
How to check existence of an input argument for R functions
I have a function defined as
myFun <- function(x, y, ...) {
# using exists
if (exists("z")) { print("exists z!") }
# using missing
try(if (!missing("z")) { print("z is not missing!") }, ...
6
votes
3answers
1k views
jQuery element exists event
Is there an event or simple function for a calling a callback once a specific element exists on the page.
I am not asking how to check if an element exists.
as an example
...
6
votes
3answers
3k views
Android Calendar
I am trying to put items into a calendar and can't really find out how to code it. This is what I have so far but it inserts it into the main calendar.
String calName;
String calId = null;
...
5
votes
3answers
9k views
How can I determine if a Perl hash contains a key mapping to an undefined value?
I need to determine if a Perl hash has a given key, but that key will be mapped to an undef value. Specifically, the motivation for this is seeing if boolean flags while using getopt() with a hash ...
5
votes
1answer
4k views
How can I test if a filename matching a pattern exists in Perl?
Can I do something like this in Perl? Meaning pattern match on a file name and check whether it exists.
if(-e "*.file")
{
#Do something
}
I know the longer solution of asking ...
5
votes
1answer
21k views
IF EXISTS in T-SQL
If we have a SELECT statement inside an IF EXISTS, does the execution stops as soon as it finds a record in the table? For an e.g.
IF EXISTS(SELECT * FROM table1 WHERE Name='John' )
return 1
...
5
votes
4answers
8k views
Fast way to determine if an field exist in a ORACLE table
I am looking for a fast sql sentence for determine when a field exist or not in a table .
actually i am using this sentence
Select 1
from dual
where exists (select 1
from ...
5
votes
3answers
201 views
What is easier to read in EXISTS subqueries? [closed]
It's a question of readability. There is no difference in performance.
Old versions of SQL Server were silly enough to look up meta data, but not any more.
SELECT foo FROM bar WHERE EXISTS (SELECT ...