Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So...happens I'm working on some code which...will end up being used on different sql servers at the same time.

Although the SQL code is different depending on the server, the data types and columns are not.

Therefor, I need to know which are the data types common to (at least most) sql server types.

As a starting point, I have the following types:

byte, char, float, int, text, varchar, blob

Please note that spelling is quite important, since the data type name will end in the query as is (eg: although both int and integer are supported, I need the common one).

So, the question is, does anyone know of a chart comparing compatibility between sql servers? Or perhaps someone which did some research in the field?

As far as bias goes, I'm obviously biased to a particular RDBMS, so no need for answers on which RDBMS happens to be better. Let's keep this focused and on topic, ok?

share|improve this question

2 Answers

up vote 0 down vote accepted

I'd look into the SQL ANSI standard specification and use the data types specified there. A book like this may help you.

They all have good documentation, so I would just read up on their data types. Would probably have all the info you need. The only other information I could find before is pretty old.

Hope that helps.

Edit: Just another thought... you could use the strategy pattern for your SQL, that way it wouldn't matter if it was different, you could use the more advanced features. Though this way you'd have more work to do and more to maintain :/

share|improve this answer
Thanks, very useful info. With regards to "strategy pattern", I'm not sure I follow you. As in, how would it be useful to me? As in, I already am following that pattern, but some data types might be exclusive to certain RDBMS (eg, "blob"). – Christian Nov 9 '10 at 11:08
I though you may be able to 'plug in' different classes to allow for different functionality, for example if – Mr Shoubs Nov 9 '10 at 11:25
Sorry, enter button doesn't work on add comment... thought you may be able to use it to convert different returned datatypes, or run different sql based on the class you plug in to your dao class... see dofactory.com/Patterns/PatternStrategy.aspx does that make sense? maybe thats not what your trying to achieve? – Mr Shoubs Nov 9 '10 at 11:26

I think you will end up writing specific, casy by case SQL statements for each type of database server. Certainly I did.

I've been in your situation, including having the intention to write database agnostic code, but in the long run it just does not work. One database will not, for example, handle multi-byte strings while another will demand them (ie, SQL Server CE), this will force you to use either Varchar vs NVarchar on columns, for example. Some databses will support multi byte strings, but with awful performance. One will use VARCHAR2 (Oracle), and everyone else will use VARCHAR. One will handle BLOBs one way while another will do so differently. Don't get me started on date data types, either.

Rather than find the magic subset of the SQL language and data types that works in all databases, you would be wiser to look for a data access method/library that can hide the differences for you (maybe some ORM library that lets you create DB objects as well as access them?)

Like I said, I have been (and still am) in your situation of having to support multiple databases and the best solution for me is to write optimal code for each database, rather that trying to find SQL data types and code that works in all of them (I wasn't able to, not to a satisfactory level).

Also, you will be able to squeeze more performance out of each DB if you create separate SQL text for each database (ie, the performance-related parameters you can specify while creating an Oracle table that do not apply at all when creating a table in any other database).

I say, do not fight the syntax differences in the different databases, you will not win. It's a better idea to put up with and use those differences to your advantage as much as possible.

share|improve this answer
Actually, I'm the one writing the ORM library ;) – Christian Nov 9 '10 at 13:59
Anyhow, the issue (as I said again above) is data types. SQL statements get preprocessed depending on the library. I just need to know the core data types. Also, since it's PHP passing the sql statement, I can't be bothered with multibyte (it's always the same kind of strings I'm passing). – Christian Nov 9 '10 at 14:00
@Christian, if you are the one writing the ORM, then you should do the heavy lifting. Find out for yourself which types are best. You are trying to cut a corner by looking for a chart that gives you all the answers. My point is that it's not that simple. And my point about multi-byte isn't whether you need it or not, it's about whether it's supported or not on the target database. – Gabriel Magana Nov 9 '10 at 14:04
1  
So you expect me to try out the hundreds of database systems out there? Besides, what's so difficult to get something like this running?: quirksmode.org/compatibility.html – Christian Nov 10 '10 at 9:22
@Christian: I Don't "expect" anything, I'm not your boss. I'm just telling you what I ran into myself. Nothing more. – Gabriel Magana Nov 10 '10 at 11:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.