Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
7answers
2k views

Which dialect of Lisp should I learn?

I know there are a few different dialects of Lisp. Having decided that learning Lisp would be a new intellectual experience, I would like to know which Lisp dialect to learn, and why. Is there one ...
6
votes
2answers
423 views

nhibernate queryover use sql functions

I have been searching the internet and can't find an example on how to use the queryover of nhibernate 3.0 For example I would like to use the string functions on the where clause of the queryover ex: ...
4
votes
3answers
138 views

What are the major differences between the mysql and oracle sql dialects?

I am a software developer. I have used mysql for years and now I am about to have my first encounter with oracle in a project. I was just told that I should be careful that the sql behaves quite ...
4
votes
1answer
1k views

Configure hibernate's dialect using JNDI (with Spring)

I'm trying to configure a Spring+Hibernate web application using JNDI instead of a properties files. Everything works fine por database url, password, login, etc., but I can't get the dialect from the ...
3
votes
1answer
216 views

Which dialect of LISP is 'The Little Lisper' [3rd Edn] written in? (at the time)

The Little Lisper is an extraordinary book. http://www.amazon.com/Little-LISPer-Third-Daniel-Friedman/dp/0023397632/ref=sr_1_1?ie=UTF8&s=books&qid=1279715423&sr=8-1 Does anyone know ...
2
votes
1answer
4k views

Java Spring: AnnotationSessionFactoryBean, Hibernate-Dialect AutoDetection

I use the following spring application context: <!-- Hibernate session factory --> <bean id="sessionFactory" ...
1
vote
2answers
78 views

Python : is it possible to use different dialects on different fields?

I am reading CSV file with python and for some fields I want to remove escape char ('aaa/bb' to aaabb) and for some fields leave it without a change. for example: ...
1
vote
2answers
127 views

write lisp dialect

Do you have any advice for writing a Lisp dialect/interpreter in Python? I'd like to start off with just several basic commands, like set, print, and define or something... I've been programming in ...
1
vote
0answers
78 views

are there open source validation parsers for major SQL dialects (TSQL, Oracle, MySQL)? or at least precise specs for these dialects?

word on the street is that Perl is defined not by a spec but by whatever the current interpreter version happens to accept. Now, let's consider an SQL dialect like TSQL. Is there a published spec of ...
1
vote
1answer
582 views

NHibernate: How to solve this “dialect” configuration problem?

Problem Encountered At runtime, I always get the following NHibernate.MappingException: "Could not compile the mapping document: GI.InventoryManager.CYB.Mappings.Part.hbm.xml" Yes, its build ...
0
votes
0answers
44 views

Nhibernate - Dialect does not support DbType.Double

When I try to execute this query: var q = session.QueryOver<Member>(); q.Select(Projections.Avg<Member>(x => x.AccountBalance)); var result = q.List(); I ...
0
votes
2answers
1k views

Hibernate mysql innodb

I wanted to force hibernate to use innodb. So, i changed the "hibernate.dialect" in order to have innodb, but i can connect to mysql, but when i do some transactions i have the following error: ...