Exists is a keyword or function in many languages, especially in SQL.

learn more… | top users | synonyms

1
vote
2answers
873 views

How does the .Exist timeout work within QTP?

I've worked with the .Exist method quite a bit, but I recently moved to a new project (now using a WPF application) with QTP 11 (whereas previously I had QTP 10). Now I'd like to check that a message ...
0
votes
2answers
29 views

exists() condition performance issue

I'm confused... I have simple SQL query (see below) that runs indefinitely long (I was not able to wait for its completion) if exists( select 1 from [files].[Contacts_Migration_Template] c ...
0
votes
2answers
61 views

Just another php image exists issue

All of this stuff is for example (names aren't actual). Everything is also located on localhost:8080 (USBWebserver 8.5) Directory Structure: (Files located on localhost:8080/[project_name]) /ajax ...
1
vote
1answer
84 views

file_exists returning false when filename is passed through a variable

I'm stumped, and I'm sure I'm missing something really basic here. Safe mode is disabled, the file exists. This code: $dir = "textfiles" chdir('../'.$dir."/"); //using a Windows Slash here(Wamp ...
1
vote
1answer
164 views

How to continue program if element not exists

I wait for a certain period using element.WaitUntilExists();. I did set wait time: WatiN.Core.Settings.WaitUntilExistsTimeOut = 10; If an element does not exist, I set a certain boolean and just ...
1
vote
1answer
175 views

Need to check if table exists in SQlite with JS

I haven't been able to find whether a table exists in my DB. I open/create it with JS like this: DEMODB = openDatabase(shortName, version, displayName, maxSize); and then: ...
1
vote
1answer
165 views

Finding if a value already exists in the indexedDB

I am working in IndexedDB. I am able to create, populate and delete the values in my jquery mobile app. Now when I come to a page for the first time I should check whether the value is available in ...
1
vote
1answer
616 views

PHP file_exists will not work

I have been having problems with file_exists function in PHP that it always returns false, though the file is there as I can remove the if statement and it shows up fine. $filename = ...
1
vote
1answer
581 views

Validating the existence of a remote directory in C#

I am using Directory.Exists to see if an entered directory is a valid directory. This works well for all local directories, and for valid remote directories that I have access to, but for remote ...
1
vote
1answer
677 views

Why does reader.GetOrdinal(“FieldName”) throw an exception?

this throws an exception, when the field does not exist: reader.IsDbNull(reader.GetOrdinal("FieldName")) => bang Why not return -1 ?
1
vote
1answer
429 views

Connect Chiba xForm to a restful web service (exist db)

I need to read an xml instance from an exist db. I am attempting to connect chiba to a restful web service via the following command: <xf:model> <xf:instance id="data-instance" ...
0
votes
1answer
97 views

PHP - MySQL- Table doesn't exist

I have created a table using php. When i go to access that table, i get the error -table doesnt exist. I have given all permissions from to the user when creating table. table name is in small letters ...
0
votes
1answer
56 views

Hiding DIV in TPL file based on if an image exists?

<div><div style="margin-left:67px"><table style="border:1px #80A0BB solid;" padding="5px"><tr><td><a href="{$link.URL|trim}" target="_blank"><img ...
0
votes
1answer
139 views

Finding data in Firebase

I'm trying to check if a username is used as in the example given in the Firebase docs: function go() { var userId = prompt('Username?', 'Guest'); checkIfUserExists(userId); } var ...
0
votes
1answer
71 views

Check if Mobile (.m) website exists Query Issue

I'm having trouble checking if a url exists. I use the below for most checks - its the best method I have found and saves on a full web request but it does;nt allow for checks on address such as: ...
0
votes
1answer
35 views

Determining whether a dll is present or not

I want to use DotNet-dlls within VBA code. But I want to be able to determine whether a dll is present or not before I declare the object with CreateObject. Is it possible to use a dotnet dll ...
0
votes
1answer
124 views

PHP Update: check if serialnr already exists in database returns Yes > Can't update

I just wrote this code until I realized that I won't be able to update a field without changing the serialnr to something which doesn't exists. if (isset($_POST['update'])) { $errormsg = ""; ...
0
votes
1answer
355 views

ruby on rails check if value exist in array always returns true

I am trying to check if a set pset(aka problem set) exist in an array in order to display the correct page but the following code always returns true... def c allowed_psets = [1] pset_id = ...
0
votes
1answer
53 views

optimize Mysql: get latest status of the sale

In the following query, I show the latest status of the sale (by stage, in this case the number 3). The query is based on a subquery in the status history of the sale: SELECT v.id_sale, IFNULL(( ...
0
votes
1answer
239 views

DownloadManager - Rename download if file already exists

public void onClick(DialogInterface dialog, int id) { Uri u = Uri.parse(url); File f = new File("" + u); DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); ...
0
votes
1answer
668 views

Check if database exists in JavaScript

openDatabase(DB_SHORT_NAME, DB_VERSION, DB_DISPLAY_NAME, DB_MAX_SIZE) in JavaScript opens database or creates the database if not exists in browser. Is there any way I can able to check if database ...
0
votes
1answer
115 views

How to check is a row value exists for each user in the database

I'm creating a database which tracks customer contact, the target contact date for initial contact is 90 working days from the first date that a custom calls us, I have created a function to handle ...
0
votes
1answer
228 views

in mysql, how to avoid selection if a table exists

let's say I run the following query: CREATE TEMPORARY TABLE IF NOT EXISTS FISH SELECT 'a'; it will create a temporary table with 'a' in it. Now, if I run the query again, the table will not be ...
0
votes
1answer
1k views

Cakephp check if model exists

I am creating an application in which I am using two plugins. For future use I want to check whether the two plugins are being used together or separately. I need to check if the model exists and if ...
0
votes
1answer
478 views

Convert a two-table exists query from SQL to Linq using dynamic fields in the subquery

I'm trying to query old Access database tables and compare them with SQL Server tables. They often don't have primary keys, or they have extra fields that had some purpose in the nineties, etc., or ...
0
votes
1answer
664 views

Avoiding multiple if exists, else if exits statement for different joins used inside

Inserting in one common table with the different scenarios E.g: if exists(select id from tablename where id =1 ) insert into Temp select * from tbl inner join ........ else if exists(select id ...
0
votes
1answer
344 views

Android /config directory lists files where .exists() == false?

My Android 2.2.2 file system shows a /config containing lost+found, public, and wifi. However, .exists() on a new File() for any of those paths returns false. Is this a bug in Android, or in my ...
0
votes
1answer
125 views

Insert based on two elements existing in a row MySQL

I'm imagining that this is a simple question, but I'm running into syntax issues I think. I have a table that has an event ID as primary key(eventID), a device ID that of what triggered the event, ...
0
votes
1answer
807 views

Word VBA “Label Not Defined” If Bookmark exists command

I am very new to VBA and just learning. Here's my situation and problem: 1) I created a working userform with text and comboboxes linking to bookmarks 2) Problem is that it doesn't work if some ...
0
votes
1answer
1k views

If-exists-UPDATE-else-INSERT with Linq-to-Entities?

is there a way to write this same SQL atomic instruction using Entities and LinQ? IF EXISTS (SELECT * FROM MyTable WHERE ID = @Id) UPDATE MyTable SET name = @name ELSE INSERT INTO MyTable (@Id, ...
0
votes
1answer
678 views

Class exists in an external file

How do I check an external file for a class? I am trying to setup a install feature for my modules, so I am trying to get it to load a list of directories and then check if the module file has a ...
-1
votes
1answer
7 views

Find a file type and verify a line exists replace if value is different than expected

I'm trying to write a batch file that will search a directory for a file type. After I find the file name I need to read the file to verify that a line exists and overwrite the line if different than ...
-1
votes
1answer
293 views

SQL insert into where columns exist

I am having trouble with a SQL insert statement. Currently the Insert statement is used to transfer data from a .CSV file into a SQL table, but the contents of the .CSV file can vary i.e. it may ...
-1
votes
1answer
249 views

How to formulate T-SQL to exclude duplicates?

I am trying to develop a query to just return non-duplicate records so that I can add these to my database, but I keep getting the duplicate record error. I tried ur solution but am still getting ...
1
vote
0answers
54 views

The APK that is compiled by the mm command can not read the contents of the SD card

File settingFile = new File(getString(R.string.settingFile)); Log.d("debug",settingFile.toString()); if(settingFile.exists()){ Log.d("debug","exists"); } else { Log.d("debug","not exists"); } ...
1
vote
0answers
329 views

SimpleHtmlDom Fatal error: Call to a member function find() on a non-object

I'm using SIMPLEHTMLDOM class and when i'm writing this code: $html -> find(".search_results div table") it shows this error: "Fatal error: Call to a member function find() on a non-object" The ...
1
vote
0answers
460 views

ASP.NET Check if localization resource exists

I'm using ASP.NET 4.0 and have resource files (like labels.en-EN.resx) and manage them using the ResourceManager object. How can I check if there is no translation file for a specific culture? ...
0
votes
0answers
13 views

Ant - Check SCP Remote File Exists

I have a remote location which an Ant SCP task copies files to. I would also like a separate target in my build that checks if a file exists in this remote location. However I cannot see a way to ...
0
votes
0answers
27 views

Java - from a class within a project, check if a file exists in a different project

I am within a project cd.ef.gh/country/terms/license/CreateLicense.java From the class CreateLicense.java, I want to check if a file exists in a different project. However the below code always ...
0
votes
0answers
30 views

magento api Requested order not exists

I have an observer for a magento store, that should fire on the event 'sales_order_place_after'. This observer gets the last order id like so: $orders = ...
0
votes
0answers
25 views

No results using with xmlnamespace exist

I am new to using WITH XMLNAMESPACES and am having some difficulty producing results using the exist() method. The xml column I am querying is as follows: <Root> ...
0
votes
0answers
28 views

CoffeeScript: find item which date is less than dates of all its subitems

How to do this in a more elegant way?: $scope.reviewedClass = (mapper)-> for key, mapping of mapper.mappings when mapping.updatedOn<=mapper.updatedOn return "" "item-review"
0
votes
0answers
154 views

How to check if a range exists in Excel using C#/VSTO

I'm currently working on a C# project using VSTO and Excel. The fact is that I'm saving Ranges in my program, but when I delete this range on Excel, it give me an error in the program. And i don't ...
0
votes
0answers
32 views

NoSuchMethod error - xmlrpc

I am using the XML:DB API within Java to connect to an instance of the 'eXists' XML database which I have running on my local machine. However, I'm having problems when trying to access files within a ...
0
votes
0answers
462 views

VB.Net TreeView if nodes key exists update child node

I want to create a treeview to list url. I do not understand how to update the child nodes if the node has the same root with the current. if there is no root node then the node create a new root ...
0
votes
0answers
66 views

Find rows where 2 columns should contain values with set, corresponding values but do not

I have a table with the following fields ChemID and ChemName I have mismatched values where the two should correspond and need a query to identify rows with these mismatched col values. For ...
0
votes
0answers
434 views

Create database if not exists timeout

I'm trying to do CREATE DATABASE IF NOT EXISTS databasename but get timeout errors. The tables in the database are quite large, some 100s of MBs. Doing the same thing on a smaller database works ...
0
votes
0answers
82 views

SQL Server: generating a number for a column

Here is the situation that I am currently struggling with. I have two tables: Pro1 , Pro2 (a reference table) Pro1: ID int, ProviderID1 varchar(25) Pro2: ID int, ProviderID2 varchar(25) Here is ...
0
votes
0answers
283 views

Android: File.exists returns true when it should return false

I have a bizarre problem. I write a file to the SD card and then I remove the SD card. With the card removed, I then check for the existence of the file with File.exists. The path to the file clearly ...
0
votes
0answers
976 views

insert and update if a record exists else not , race condition

if exists (select itemcode from item where itemcode=1120) update item set itemname = 'laptop' where itemcode = 1120 else insert into item (itemcode,itemname) values (1120,'laptop') it will be ...

1 2