Tagged Questions
The any tag has no wiki summary.
8
votes
1answer
87 views
Are SQL ANY and SOME keywords synonyms in all SQL dialects?
In Postgres, ANY and SOME are synonyms when used on the right hand side of a predicate expression. For example, these are the same:
column = ANY (SELECT ...)
column = SOME (SELECT ...)
This is ...
7
votes
3answers
3k views
WAIT for “any process” to finish
Is there any built in feature in bash to wait for any process to finish?
We use " wait" only for the child processes to finish.
I would like to know if there is any way to wait for any process to ...
4
votes
3answers
264 views
simplify simple C++ code — something like Pythons any
Right now, I have this code:
bool isAnyTrue() {
for(std::list< boost::shared_ptr<Foo> >::iterator i = mylist.begin(); i != mylist.end(); ++i) {
if( (*i)->isTrue() )
...
3
votes
1answer
209 views
Problem iterating std::map of Poco::Any
I have a std::map of Poco::Any which I'm trying to iterate and output to a stream but i'm getting a compiler error. My code is below:
map<string, Poco::Any>::const_iterator it;
map<string, ...
3
votes
2answers
500 views
Boost any usage
how can I insert my own class objects into ptr_map from boost. The objects are templated so I can't use some static typename in the map. So I did:
ptr_map<string, any> someMap;
My class ...
2
votes
1answer
144 views
PostgreSQL: PREPARED statement with ANY($1)
I want to create a PREPARED STATEMENT where inputs are some integers whose count is not known.
The way I'm trying to do is
PREPARE prep_select_data AS SELECT ARRAY[$1, id], $1, * FROM tbl_data WHERE ...
2
votes
5answers
137 views
JavaScript/jQuery equivalent of LINQ Any()
Is there an equivalent of IEnumerable.Any(Predicate<T>) in JavaScript or jQuery?
I am validating a list of items, and want to break early if error is detected. I could do it using $.each, but I ...
2
votes
2answers
286 views
Storing boost function
I have to store a list of different boost::function objects. To provide this I'm using boost::any. I have a few functions which takes different functions signatures, pack them into any and then insert ...
2
votes
4answers
1k views
Prolog program to find equality of two lists in any order
I wanted to write a Prolog program to find equality of two lists, where the order of elements
doesn't matter. So I wrote the following:
del( _ , [ ] , [ ] ) .
del( X , [ X|T ] , T ).
del( X , [ H|T ...
2
votes
4answers
1k views
any() function in Python with a callback
The Python standard library defines an any() function that
Return True if any element of the iterable is true. If the iterable is empty, return False.
It checks only if the elements evaluate to ...
1
vote
1answer
39 views
Using Linq to select from a List in a List with Contains
I'm having syntax troubles.
public class Student
{
int StudentId;
string Name;
}
public class Course
{
int CourseId;
List<Student> Students;
}
int[] studentIds = { 5, 7, 12 };
...
1
vote
2answers
70 views
SQL ANY query - valid syntax
Trying to use the following 'ANY' syntax and gets an error:
SELECT DISTINCT Em.ename
FROM Emp Em, Dept D
WHERE Em.eid In (Select D.managerid
FROM Dept D
GROUP BY ...
1
vote
1answer
23 views
I can't understand how to use 'ANY' in Document Type Definition language
Suppose we have this XML document
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE note [
<!ELEMENT note (to,from,heading,body, foo)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT ...
1
vote
1answer
35 views
LINQ to SQL - Searching column of joined table
I am trying to return a result set that includes rows where any of three strings has a string match. My domain models look like this:
public class Customers
{
public int CustomerID { get; set; }
...
1
vote
2answers
41 views
How to add an attribute to an xsd:any element
How do you add an attribute to an xsd:any element? For example, given the following:
<xsd:element name="requests">
<xsd:complexType>
<xsd:sequence>
...
1
vote
3answers
127 views
Rails “any?” instance method callback?
How to receive the post's ID, if post is found via this '.any' call?
<% if @posts.any? {|p| p.title == my_title} %>
1
vote
0answers
78 views
Any Mapping using NHiberante Fluent
Nhibernate documentation specfies ReferenceAny() as a method to do the mapping inheritance trees.
Check doc here. However the code specifies the method as deprecated and will be removed in the next ...
1
vote
1answer
91 views
hibernate @Any mapping, can't fetch the “any” item
Using hibernate @Any mapping to map multiple entities in the same, I haven't be able to build a request to fetch all the objects of a specific class.
Hibernate doesn't seem to be capable to handle ...
1
vote
2answers
188 views
IEnumerable Any() with a simple int[]
Quick question: I'm comparing the IDs of entities in an EF4 EntityCollection against a simple int[] in a loop. I'd like to do something like:
for (int i = 0; i < Collection.Count; ++i)
{
...
1
vote
2answers
93 views
how to do 'any(::text[]) ilike ::text'
here is table structure
table1
pk int, email character varying(100)[]
data
1, {'mr_a@gmail.com', 'mr_b@yahoo.com', 'mr_c@postgre.com'}
what i try to achieve is find any 'gmail' from record
query
...
1
vote
1answer
282 views
nhibernate NamedQuery from criteriaQuery --> help needed
I am trying to convert a working criteria query into a named query, and not getting the syntax right. The hql version apparently wants both the type and id params specified.
The query is over a ...
1
vote
2answers
391 views
AnyIterator and boost iterator facade
Is it possible to implement an any iterator with boost iterator facade?
I don't want to define implementation details in my baseclass
class Base
{
public:
typedef std::vector<int>::iterator ...
1
vote
1answer
85 views
Framework using OAuth on iPhone for my site
I've been searching for a long while for a framework that will connect my iphone to any site using OAuth, int his case my own site.
I've seen MPOAuthMobile and OAuthConsumer, none of them worked for ...
1
vote
2answers
254 views
boost::any compare value?
I have a vector of boost::any and would like to find the index of a 'any' in this vector.
Something like this :
vector<any> values;
any valueISearch = ...;
find<A*>(valueISearch);
For ...
1
vote
4answers
81 views
LinqResult.Any() Resulting In NullReferenceException
What could be causing this error:
NullReferenceException was unhanded, Object reference not set to an instance of an object.
var LinqResult =
from a in Db.Table
select new {Table = a};
...
1
vote
2answers
343 views
boost::any, variants, calling functions based on arrays of them
Given a set of functions, such as:
template<class A1>
Void Go(A1 a);
template<class A1, class A2>
Void Go(A1 a1, A2 a2);
template<class A1, class A2, class A3>
Void Go(A1 a1, A2 a2, A3 ...
1
vote
1answer
30 views
How can I do bi-directional mapping over @Any annotated property?
In this article http://www.jroller.com/eyallupu/entry/hibernate_the_any_annotation and also in this question http://stackoverflow.com/questions/217831/how-to-use-hibernate-any-related-annotations, how ...
1
vote
1answer
314 views
Storing objects in the array
I want to save boost signals objects in the map (association: signal name → signal object). The signals signature is different, so the second type of map should be boost::any.
map<string, any> ...
0
votes
1answer
28 views
SQL - How can I concatenate a string based on an ANY result?
I'm trying to write a query which aggregates many rows and returns a single string value to indicate whether or not each column contains a value. It needs to examine each column and if the column ...
0
votes
2answers
114 views
Xsd.exe Any Type to XmlElement conversion. How to fill generated property?
I've an XSD (It's a standard RFC xsd as defined in ...
0
votes
1answer
23 views
Projection on the Type in an <Any> mapping in NHibernate?
Given the class :
public class VotingResult : DomainEntity
{
public const string DefaultTag = "overall";
public VotingResult()
{
Dimension = DefaultTag;
}
public virtual ...
0
votes
0answers
139 views
Why does Axis2 return null values for “any” types in a complex/sequence structure when using wsdl2java?
I tried using axis2 1.6 (and nightly 1.7) to generate Java code from the WSDL (very bottom of this page) using the following command:
$ export JAVA_HOME=/usr/java/default
$ wsdl2java.sh -uri ...
0
votes
2answers
51 views
Is it possible to define xs:any with must-be elements inside?
I'm interested in XML files with structure:
<resource>
<type>STRING</type>
<metadata>
<ANY_EXTERNAL_ELEMENT1>
...
0
votes
0answers
91 views
fluent nhibernate: querying Many-to-many entity with equivalent of the 'any' keyword
I have a mant-to-many relationship modeled in the database (with a bridge table) between Student and Professor (_students_selected) , in my entites i have modeled it as a many-to-many relationship ...
0
votes
0answers
27 views
Retrieving rows where rows from a joined table don't contain values from a third table - PHP / MySQL
I'm trying to produce a tag filter where a user chooses which topics are retrieved on the basis of what they are tagged with. I have a table called 'Filters' which contains two columns, the User's ID ...
0
votes
1answer
99 views
Hibernate 3.6.7: Problem with @ANY and Foreign-Key
I have the entities "User" and "Customer":
@Entity
@Table(name = "USR_USER")
public class User extends PersistentObject {
[...]
@Any(metaColumn = @Column(name = "USR_OWNERTYPE"))
...
0
votes
2answers
46 views
selecting items from a list with linq, where items appear in other two lists
i have two lists which contains guids:
var activeSoftware = channels.ByPath("/software/").Children.Where(c => c.StateProperties.IsActive).Select(c => c.Guid);
var activeChannels = ...
0
votes
0answers
45 views
Can entity-name used instead of class with <any></any> in the <meta-value> tag mapping xml?
I would like to ask if it's possible to use the any mapping with entity-name instead of class as in the other mappings (like one-to-many, e.g.).
I have - for various reasons - multiple tables mapped ...
0
votes
1answer
30 views
Retrieve array of get requests
I am looking for a way to retrieve the URLs of the get requests from a specific website / link that I do not have any affiliation with. I've been using PHP and its really not working out. I am pretty ...
0
votes
4answers
108 views
How do I learn this “any … func” code?
I with could re-write the question better, but can someone tell me where I can learn what is happening in this piece of azure code?
0
votes
1answer
474 views
PostgreSQL SELECT minus array (NOT IN)
SELECT DISTINCT ON
(u.user_uuid, u.firstname)
u.user_uuid,
u.firstname,
u.preposition,
u.lastname,
array_to_string_ex(ARRAY(SELECT email FROM emails WHERE ...
0
votes
1answer
204 views
ASP.NET OutputCache - Where will the Cache be stored id Location=“Any”
I want to use ASP.NET Output cache in my website. If i select Location="Any" where will the cache be stored?
0
votes
1answer
65 views
Preventing NHibernate foreign key creation for <any> mapping
Is there a way from preventing SchemaExport from generating a foreign key constraint on
mapping type? I saw a similar question about mapping, but unfortunately that wont do for . I couldn't find ...
0
votes
1answer
64 views
Any type mapping with different Id types
I'm working on an event-planning application for the contacts in a phone book. Avoiding all the public virtual and protected stuff, my Contact class looks like:
class Contact {
//...
Int32 ...
0
votes
3answers
517 views
How to print boost::any to a stream?
I have a Map std::map<std::string, boost::any>, which comes from the boost::program_options package. Now I would like to print the content of that map:
for(po::variables_map::const_iterator it ...
0
votes
3answers
134 views
casting pointers
I'm using ptr_map for storing different types of pointers.
boost::ptr_map<string, any> someMap;
I store there some templated class objects:
someMap.insert("1", new SomeClass<int>());
...
0
votes
1answer
184 views
Casting from any
I'm packing some classes into ptr_map with any typed value.
class EventManager
{
ptr_map<string, any> mSomeMap;
public:
typedef signals2::signal<void (int someSignature)> ...
0
votes
0answers
108 views
how to convert html file i.e. compatible to display within flash..?
I allready developed the standalone flash exe to disaply both the HTML and .swf files using AS3
I have 1000 s of html files that are compatible with flash because only some tags are supported by ...
0
votes
2answers
181 views
Declaring element with ANY name in DTD
Is it possible to declare an element in my DTD which can have ANY name? So far I have learnt that ANY can be used only for the data type as in:
<!ELEMENT element-name ANY>
Any help will be ...
-1
votes
1answer
40 views
JAX WS xsd:any type is an XMLSchema element
Handling xsd:any type is an XMLSchema element JAX WS
<types>
<schema targetNamespace="http://www.iona.com/artix/wsdl"
xmlns="http://www.w3.org/2001/XMLSchema"
...