« Tips for using Flex Builder 2 | Main | Flex app works with FireFox but not with IE when using SSL »

August 25, 2006

How to access database from flex 2

We often hear people asking about how to config datasource in flex to connect to a database. It is a miss conception to think that you need to config a datasource in flex and can use that datasource to connect to a database. Then how does flex app access data from a database? Flex does not connect to DB directly, but thru Java or other means. The doc has all the details regarding this topic, and has a sample of using PHP. But it may not be clear for people who are not familiar with J2EE to connect using java. Here is the steps to create access to database using Java.

Basically, there are three steps you need to accomplish in order to communicating with database from flex.

1. Write java code to communicate to the database. We usually call this an Assembler. In here, you provide the information about what database and jdbc driver you are connecting to, and create a connection to it.

2. Then config a destination which point to the Assembler in data-management.xml. Any flex app uses this destination will use this Assembler, and connecting to the same database.

3. In your flex code, you reference the data service like this:
dsEmployee = new DataService("crm.company");
here crm.company is a destination defined in step 2.

Now, Let us look at the sample code included in the samples.war to see how it is done. Let us look at the crm sample in dataservice.

1. Open dataservice\crm\companyapp.mxml, In there you can see the following code:

dsCompany = new DataService("crm.company");
// if hibernate is used, change the destination of the data service
// dsCompany = new DataService("crm.company.hibernate");
dsCompany.addEventListener(ResultEvent.RESULT, companyResultHandler);
dsCompany.addEventListener(FaultEvent.FAULT, faultHandler);
dsCompany.addEventListener(DataConflictEvent.CONFLICT, conflictHandler);
dsCompany.autoCommit = false;

Here we are using a dataService named "crm.company" for our app.

2. Open WEF-INF\flex\data-management.xml, we can see crm.company is defined as:

<destination id="crm.company;">
<adapter ref="java-dao" />
<properties>
<source>samples.crm.CompanyAssembler</source>
<scope>application</scope>
....


This destination point to java class amples.crm.CompanyAssembler. This is our Assembler.

3. Let us see how the Assembler is constructed.
--- go to WEB-INF\src\samples\crm\CompanyAssembler.java, we can see :
CompanyDAO dao = new CompanyDAO(); //using CompanyDAO class
--- go to CompanyDAO.java, we can see
c = ConnectionHelper.getConnection(); //using ConnectionHelper class
--- go to ConnectionHelper.java, we can see the code to connect to database:

private ConnectionHelper()
{
try
{
Class.forName("org.hsqldb.jdbcDriver");
// Obtain a path to WEB-INF/classes/samples/crm
String str = URLDecoder.decode(getClass().getClassLoader().getResource("samples/crm").toString(),"UTF-8");
// Create HSQLDB JDBC URL pointing to WEB-INF/db/crm/crm (where the last crm is the datanase name)
url = "jdbc:hsqldb:" + str.substring(0, str.indexOf("classes/samples/crm")) + "db/crm/crm";
}
catch (Exception e)
{
e.printStackTrace();
}
}

This is the core of the Assembler. This is where you tell flex which database to connect.

The most important information you need to provide are the driver name and the URL. Each database has different driver name and URL, you have to make sure you are using the correct name and format. Here is a list of driver name and example of URL:


#MySql
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test

#Oracle
#driver=oracle.jdbc.OracleDriver
#url=jdbc:oracle:thin:@test:1521

#Sybase Enterprise
#driver=com.sybase.jdbc3.jdbc.SybDriver
#url=jdbc:sybase:Tds:localhost:2048/test

#Sybase Anywhere
#driver=com.sybase.jdbc3.jdbc.SybDriver
#url=jdbc:sybase:Tds:localhost:2638/test

#Informix
#driver=com.informix.jdbc.IfxDriver
#url=jdbc:informix-qli://localhost:50000/test:informixserver=testserver

#MS SQL
#driver=com.microsoft.jdbc.sqlserver.SQLServerDriver
#url please see http://msdn2.microsoft.com/en-us/library/ms378428.aspx

Posted by lin at August 25, 2006 06:44 PM

Comments

Well, you can connect to a db using PHP too (just to point it)...

Good example.

Posted by: Alberto Alcaraz at August 25, 2006 08:14 PM

Do you have an example of connecting to a MS SQL server?

thanks
tim

Posted by: Tim at September 14, 2006 02:22 PM

Hi, Tim,
For MS SQL, the driver name is:
com.microsoft.jdbc.sqlserver.SQLServerDriver
For the URL, please see
http://msdn2.microsoft.com/en-us/library/ms378428.aspx

Posted by: lin at September 14, 2006 02:40 PM

hi,
i am very new to flex.
can you pls give me an example for connecting flex to Ms Sql server in .Net or in ASP.
Thanks

Regards
Akhilesh

Posted by: akhilesh at September 15, 2006 02:19 AM

Hi there,

I'm trying to build a very basic application to connect to a mysql server.
1. I have build an assembler to connect to my Mysql database
2. I have put in my data-management-config.xml file:

destination id="con.sqltest"/

and as source packetname.ItemAssembler
3. In my mxml file I have put this code:

private var items:ArrayCollection = new ArrayCollection();
private var dsItem:DataService;

private function fill():void
{
dsItem = new DataService("con.sqltest");
dsItem.fill(items);
}

but I keep getting this error:

[RPC Fault faultString="No destination 'con.sqltest' exists in service flex.data.DataService" faultCode="Server.Processing" faultDetail="null"]
at mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchFaultEvent()
at ::DataListRequestResponder/fault()
at mx.rpc::AsyncRequest/fault()
at ::NetConnectionMessageResponder/NetConnectionChannel.as$37:NetConnectionMessageResponder::statusHandler()
at mx.messaging::MessageResponder/status()

Does anyone know what the problem could be?

Thnx!

Posted by: Sam De Meyer at September 25, 2006 11:10 AM

How about using CFC's and Cold Fusion?
Can you give any examples here?

Thanks,
Gene

Posted by: Gene Godsey at October 4, 2006 08:54 PM

Hello,
How can I upload files and save the file path to DB with flex2?

Posted by: newtype at October 18, 2006 03:51 AM

thanskler

Posted by: sohbet at November 21, 2006 06:58 PM

This site looks so nice...

Posted by: sohbet at November 21, 2006 07:00 PM

thanksler

Posted by: iddaa at December 7, 2006 05:41 PM

thanx

Posted by: Ödev at January 23, 2007 01:09 PM

Thank you.

Posted by: Download at January 25, 2007 11:13 PM

Hi Tim

i am very new to flex too.
can you pls give me an example for connecting flex to Ms Sql server in .Net or in ASP too.

Thanks

Wilson
São Paulo/Brasil

Posted by: Wilson at January 26, 2007 05:20 PM

Thank you!

Posted by: bouncy boobs at January 29, 2007 04:27 PM

thanks...

Posted by: rock at April 6, 2007 06:13 PM

HI ,

can any one help me out... i am getting the same error as shown below while connecting to oracle server...


[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error undefined url:'rtmp://localhost:2038'"]
at mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchFaultEvent()
at ::DataListRequestResponder/fault()
at mx.rpc::AsyncRequest/fault()
at mx.messaging::ChannelSet/::faultPendingSends()
at mx.messaging::ChannelSet/channelFaultHandler()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.messaging::Channel/mx.messaging:Channel::connectFailed()
at mx.messaging.channels::PollingChannel/mx.messaging.channels:PollingChannel::connectFailed()
at mx.messaging.channels::RTMPChannel/mx.messaging.channels:RTMPChannel::statusHandler()

Posted by: vel at April 11, 2007 07:43 AM

Hello, I have been playing around with Flex 2. I have been using the Coldfusion/Flex Application Wizard to construct some simple data grids. I am using an MS Access database as my Default Data Source. I would now like to create charts using this samne database.

What options do I have to connect to this database (to make it my dataProvider)to create charts? I don't want to use an ArrayCollection in the MXML file. Also can I do this without using FDS?

Thanks for any help!

Kirk

Posted by: Kirk at April 13, 2007 11:07 AM

Hi Tim

i am very new to flex too.
can you pls give me an example for connecting flex to Ms Sql server.

Thanks

Posted by: Rubén at April 23, 2007 07:46 AM

thanks a lot

Posted by: diyet at April 26, 2007 07:08 AM

Hi,

Im new to Flex...
You have given a detailed explanation on how we can connect to database..but I have no idea on how to connect to Ldap server..

I am working with Flex2.0. I have gone through the documentation, but I couldnt find how I could connect to a backend LDAP source (eg. Sunone, ActiveDirectory..) using ActionScript. Please help me understand how I could make LDAP calls using Actionscript.

Thanks,
Tauri.

Posted by: tauri at May 1, 2007 02:47 AM

www

Posted by: www at May 16, 2007 12:59 AM

www

Posted by: www at May 22, 2007 12:39 AM

im new flex.i like this.thank you

Posted by: yehhu at June 7, 2007 09:11 PM

Would I download full source of example application ?

Posted by: belote at June 9, 2007 11:01 AM

Please. Do you have an example of connecting to a MS SQL server?

thanks

Posted by: Ruben at June 29, 2007 07:49 AM

I have Flex 3, I need an example of connecting to a MS-SQL in a .mxml

Posted by: Ruben at June 29, 2007 07:52 AM

flex is the future

Posted by: dereck at July 21, 2007 09:11 PM

hi All the comments r nice and i got info...am new to flex...plz anyone help me to implement login page using flex with mysql...
thanks
Manimaran

Posted by: Manimaran at July 31, 2007 05:19 AM

thanksss

HairLoss-Generators-Samsunlive-Yasarcan-Y25

Posted by: Cancer at July 31, 2007 02:24 PM

Hi
Can anyone tell me wat configurations should be done to connect to Oracle database from Flex 2?

Posted by: Anitha at August 2, 2007 01:23 AM

HI ,

can any one help me out... i am getting the same error as shown below while connecting to oracle server...


[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error undefined url:'rtmp://localhost:2038'"]
at mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchFaultEvent()
at ::DataListRequestResponder/fault()
at mx.rpc::AsyncRequest/fault()
at mx.messaging::ChannelSet/::faultPendingSends()
at mx.messaging::ChannelSet/channelFaultHandler()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.messaging::Channel/mx.messaging:Channel::connectFailed()
at mx.messaging.channels::PollingChannel/mx.messaging.channels:PollingChannel::connectFailed()
at mx.messaging.channels::RTMPChannel/mx.messaging.channels:RTMPChannel::statusHandler()

Posted by: Anitha at August 2, 2007 01:25 AM

I've noticed the ConnectionHelper is referenced to class only version in the samples directory.
When building a new custom Assembler (in NetBeans 5-5-1), the class is not usable and being named the same as the one in the flex jar there are problems.
It's not the same here are the problems with the real one.
can't make an instance since ConnectionHelper is an abstract class and
you can't call a non-static method from a static context using ConnectionHelper.getConnection()
SO one needs to know how to build a custom ConnectionHelper too or it should be implimented in the flex jar as it is in a stand alone flex/samples/ConnectionHelper.class
At least that's what I'm nebly figurin at dis tym, pls hlp!!!

Posted by: Gonzo at October 11, 2007 03:53 AM

well if you think thats the right idea, than maybe it's ok to use it...

Posted by: live cams at October 26, 2007 10:18 AM

Hi,

Im new to Flex...
You have given a detailed explanation on how we can connect to database..but I have no idea on how to connect to sybase..can you give me a sample??
thanks

Posted by: zhuangjie at October 28, 2007 11:52 PM

Hi All

I understand some parts of the example you give it to us. I want to see whole code of that example, so from where I can download it. I have to connect flex with Oracle urgent. If you can give me a complete example of How I can connect flex with Oracle or tell me from where I can download the example that you illustrated above??

Thank you very much, waiting for help

Posted by: molha2002 at November 19, 2007 02:40 AM

Posted by: wow at December 10, 2007 10:44 PM

thank you very much

Posted by: Oyun at December 11, 2007 08:55 PM

seks shop

Posted by: erotik market at December 13, 2007 06:50 PM

evden eve nakliyat

Posted by: evden eve nakliyat at December 14, 2007 04:48 PM

Posted by: parmaklıklar ardında at December 20, 2007 02:27 AM

can you pls give me an example for connecting flex to Ms Sql server in .Net or in ASP too
Thanks for the article

Posted by: oyun at January 3, 2008 12:39 PM

Hello,
I need to connect with Microsoft access, What driver I need to work it?

And, I am workin with coldfusion and live cycle example, but I do not know if the FDS2 examples working with Live cycle data service.

thanks

Posted by: junior at January 23, 2008 05:03 PM

Posted by: cilt at February 3, 2008 02:54 AM

http://burclar.xn--dnyas-kva98a.net/index.htm
http://burclar.xn--dnyas-kva98a.net/astroloji-nedir.htm
http://burclar.xn--dnyas-kva98a.net/astroloji-sozlugu.htm
http://burclar.xn--dnyas-kva98a.net/koc-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/boga-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/ikizler-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/yengec-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/aslan-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/basak-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/terazi-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/akrep-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/yay-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/oglak-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/kova-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/balik-burcu-ozellikleri.htm
http://burclar.xn--dnyas-kva98a.net/koc-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/boga-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/ikizler-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/yengec-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/aslan-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/basak-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/terazi-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/akrep-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/yay-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/oglak-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/kova-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/balik-burcu-ask-uyumu.htm
http://burclar.xn--dnyas-kva98a.net/koc-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/boga-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/ikizler-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/yengec-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/aslan-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/basak-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/terazi-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/akrep-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/yay-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/oglak-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/kova-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/balik-burcu-erkekler.htm
http://burclar.xn--dnyas-kva98a.net/koc-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/boga-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/ikizler-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/yengec-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/aslan-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/basak-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/terazi-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/akrep-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/yay-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/oglak-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/kova-burcu-kadinlar.htm
http://burclar.xn--dnyas-kva98a.net/balik-burcu-kadinlar.htm

Posted by: burçlar at February 3, 2008 10:59 AM

thanks

Posted by: rüya at February 6, 2008 12:27 AM

hi,

i am new to flex....do you have an example of sql server, asp.net, and flex?

thanks
aleks

Posted by: aleks at February 9, 2008 07:09 PM

sohbet

thanxx

Posted by: sohbet at February 11, 2008 07:12 PM

Thanks Your Four Sites..

Posted by: Sohbet - Chat at February 14, 2008 02:44 PM

thanks

Posted by: cilt bakımı at February 15, 2008 04:16 AM

http://www.leo.gen.tr/ Leo.Gen.Tr
http://www.leo.gen.tr/ataturk/ Atatürk
http://www.leo.gen.tr/full-program-download/ Full Program Download http://www.leo.gen.tr/full-program/ Full Program http://www.leo.gen.tr/videolu-resimli-program-anlatimlari/ Videolu Resimli Program Anlatımları http://www.leo.gen.tr/programlarin-crack-serialleri/ Programların Crack & Serialleri http://www.leo.gen.tr/turkce-program-yamalari/ Türkçe Program Yamaları http://www.leo.gen.tr/aio-all-one-programlar/ AIO ( All in one ) programlar http://www.leo.gen.tr/rss-download/ Rss Download http://www.leo.gen.tr/msn-messenger/ Msn Messenger http://www.leo.gen.tr/msn-messenger-windows-live-messenger/ MSN Messenger - Windows Live Messenger http://www.leo.gen.tr/mail-hotmail-gmail-mynet-yahoo-vs/ Mail (Hotmail,Gmail,Mynet,Yahoo Vs... ) http://www.leo.gen.tr/oyun-download-hileleri/ Oyun Download Hileleri http://www.leo.gen.tr/tam-surum-oyunlar/ Tam sürüm oyunlar http://www.leo.gen.tr/oyun-yamalari-oyunlarin-turkce-yamasi/ Oyun yamaları oyunların türkçe yaması http://www.leo.gen.tr/forum-oyunlari/ Forum Oyunları http://www.leo.gen.tr/online-oyunlar/ Online Oyunlar http://www.leo.gen.tr/oyun-hileleri/ Oyun Hileleri http://www.leo.gen.tr/flash-oyunlar/ Flash OyunLar http://www.leo.gen.tr/knight-online/ Knight Online http://www.leo.gen.tr/knight-online-serverler/ Knight Online Serverler
http://www.leo.gen.tr/knight-online-koxp/ Knight Online Koxp http://www.leo.gen.tr/knight-online-resim-ve-video-paylasim/ Knight Online Resim Ve Video Paylaşım Alanı http://www.leo.gen.tr/knight-online-hakkinda-ekstra-bilgiler/ Knight Online Hakkında Ekstra Bilgiler http://www.leo.gen.tr/vbulletin/ vBulletin http://www.leo.gen.tr/vbulletin-indir/ vBulletin İndir http://www.leo.gen.tr/vbulletin-hack-ve-eklentileri/ vBulletin Hack ve Eklentileri http://www.leo.gen.tr/vbulletin-tema-editlemeleri/ vBulletin Tema Editlemeleri http://www.leo.gen.tr/vbulletin-3-6-8-temalari/ vBulletin 3.6.8 Temaları http://www.leo.gen.tr/vbulletin-gorsel-anlatimlar/ vBulletin Görsel Anlatımlar http://www.leo.gen.tr/vbulletin-sorulariniz/ vBulletin Sorularınız http://www.leo.gen.tr/vbulletin-dil-dosyalari/ vBulletin Dil Dosyaları http://www.leo.gen.tr/vbulletin-eklenti-istekleri/ vBulletin Eklenti İstekleri http://www.leo.gen.tr/vbulletin-guncel/ vBulletin Güncel http://www.leo.gen.tr/template-monster-templates/ Template monster templates http://www.leo.gen.tr/diger-forum-ve-portal-sistemleri/ Diğer Forum ve Portal Sistemleri http://www.leo.gen.tr/korkunc-resimler/ Korkunç Resimler http://www.leo.gen.tr/korkunc-hikayeler/ Korkunç Hikayeler http://www.leo.gen.tr/komikler-mizah-eglence/ Komikler Mizah Eğlence http://www.leo.gen.tr/komikler/ Komikler http://www.leo.gen.tr/tarihten-nukteler/ Tarihten Nükteler
http://www.leo.gen.tr/hikayeler/ Hikayeler http://www.leo.gen.tr/fikralar-ve-bilmeceler/ Fıkralar ve Bilmeceler http://www.leo.gen.tr/komik-resimler-karikaturler/ Komik Resimler Karikatürler http://www.leo.gen.tr/uyelerden-bir-bukle-besteler/ Üyelerden Bir Bukle Besteler http://www.leo.gen.tr/guvenlik-ve-guvenlik-aciklari/ Güvenlik ve Güvenlik Açıkları http://www.leo.gen.tr/web-guvenlik/ Web Güvenlik http://www.leo.gen.tr/accountlar/ Accountlar http://www.leo.gen.tr/mail-guvenlik/ Mail Güvenlik http://www.leo.gen.tr/pc-guvenligi/ Pc Güvenligi http://www.leo.gen.tr/ask-ve-sevgi-sozleri/ Aşk ve Sevgi Sözleri http://www.leo.gen.tr/siir/ Şiir http://www.leo.gen.tr/guzel-yazilar/ Güzel Yazılar http://www.leo.gen.tr/anlamli-sozler/ Anlamlı Sözler http://www.leo.gen.tr/ask-sevgi/ Aşk Sevgi http://www.leo.gen.tr/ask-hikayeleri/ Aşk Hikayeleri http://www.leo.gen.tr/ask-mesajlari-sevgi-mesajlari-sevgi-sozleri/ Aşk Mesajları Sevgi Mesajları Sevgi Sözleri http://www.leo.gen.tr/ask-mesajlari-sevgi-mesajlari-sevgi-sozleri/2799-sevgi-sozcukleri-yenimesaj/" title=" 'Sevgi Sözcükleri' Konusundaki birinci okunmamış Mesaja git Sevgi Sözcükleri http://www.leo.gen.tr/bayanlara-ozel/ Bayanlara Özel http://www.leo.gen.tr/kadinin-dunyasi/ Kadının Dünyası... http://www.leo.gen.tr/guzellik-moda-saglik/ Güzellik - Moda - Sağlık http://www.leo.gen.tr/aile-evlilik-annelik-ve-bebek/ Aile-Evlilik - Annelik ve Bebek http://www.leo.gen.tr/yemek-tarifleri/ Yemek Tarifleri http://www.leo.gen.tr/ev-ve-dekorasyon/ Ev ve Dekorasyon http://www.leo.gen.tr/her-telden-muhabbet/ Her Telden Muhabbet http://www.leo.gen.tr/genel/ Genel http://www.leo.gen.tr/sehitlik/ Şehitlik http://www.leo.gen.tr/gezdim-gordum/ Gezdim-Gördüm http://www.leo.gen.tr/leo-gen-tr-anket-bolumu/ Leo.Gen.Tr Anket Bölümü http://www.leo.gen.tr/geyik-muhabbeti/ Geyik Muhabbeti http://www.leo.gen.tr/resimler/ Resimler
http://www.leo.gen.tr/wallpaper/ Wallpaper http://www.leo.gen.tr/hayvanlar-alemi/ Hayvanlar Alemi
http://www.leo.gen.tr/garip-olaylar/ Garip Olaylar http://www.leo.gen.tr/ruya-tabirleri/ Rüya Tabirleri http://www.leo.gen.tr/burclar/ Burçlar http://www.leo.gen.tr/bit-pazari/ Bit Pazarı
http://www.leo.gen.tr/komik-slaytlar/ Komik Slaytlar http://www.leo.gen.tr/genel-kultur/ Genel Kültür http://www.leo.gen.tr/edebiyat-felsefe/ Edebiyat/Felsefe http://www.leo.gen.tr/sinema-tiyatro/ Sinema/Tiyatro http://www.leo.gen.tr/kultur-sanat/ Kültür/Sanat
http://www.leo.gen.tr/zeka-sorulari/ Zeka Soruları http://www.leo.gen.tr/islam-dunyasi/ İslam Dünyası http://www.leo.gen.tr/e-book-elektronik-kitap/ E-Book (Elektronik Kitap) http://www.leo.gen.tr/cep-telefonu/ Cep Telefonu http://www.leo.gen.tr/programlar/ Programlar http://www.leo.gen.tr/temalar/ Temalar http://www.leo.gen.tr/oyunlar/ Oyunlar http://www.leo.gen.tr/wallpaper/ Wallpaper http://www.leo.gen.tr/videolar/ Videolar http://www.leo.gen.tr/cep-mesajlari-sms-sozleri/ Cep Mesajları SMS Sözleri http://www.leo.gen.tr/ceptelefonu-haberleri/ CepTelefonu Haberleri http://www.leo.gen.tr/motorlu-modifiyeli-araclar/ Motorlu Modifiyeli Araçlar http://www.leo.gen.tr/araba-videolari/ Araba Videoları http://www.leo.gen.tr/otomobiller-ve-hakkindaki-bilgiler/ Otomobıller ve Hakkındaki Bilgiler http://www.leo.gen.tr/motorsiklet/ Motorsiklet http://www.leo.gen.tr/windows-hakkinda-hersey/ Windows Hakkında Herşey http://www.leo.gen.tr/photoshop-versiyonlari-pulingleri/ Photoshop Versiyonları & pulingleri http://www.leo.gen.tr/photoshop-resimli-anlatim/ Photoshop Resimli Anlatım http://www.leo.gen.tr/guncel-driver-bios-firmware/ Güncel Driver / BIOS / Firmware http://www.leo.gen.tr/photoshop-calismalari/ Photoshop Çalışmaları http://www.leo.gen.tr/programlama/ Programlama http://www.leo.gen.tr/egitim-ogretim-bilgi-servisi/ Eğitim Ögretim Bilgi Servisi
http://www.leo.gen.tr/oss-kpss-dgs-lgs-aof/ ÖSS-KPSS-DGS-LGS-AÖF
http://www.leo.gen.tr/ders-odev-tez/ Ders & Ödev & Tez
http://www.leo.gen.tr/uyeler/leo/ Leo
http://www.leo.gen.tr/ders-odev-tez/ Aşk Sevgi Şiir Aşk hikayeleri sevgi sözleri
http://www.leo.gen.tr vBulletin
http://www.temaarsivi.net vBulletin Tema
http://www.temaarsivi.net Joomla themes
http://www.temaarsivi.net Joomla Theme
http://www.temaarsivi.net Smf Theme
http://www.temaarsivi.net Joomla Tema
http://www.temaarsivi.net Smf Tema
http://www.temaarsivi.net Mk Portal Tema
http://www.temaarsivi.net vBulletin Tema
http://www.leo.gen.tr/yazi-fontlari/ Yazı Fontları
http://www.leo.gen.tr/photoshop-templateler/ Photoshop Template photoshop templateler photoshop templates
http://www.leo.gen.tr/photoshop-brush/ Photoshop Brush
http://www.leo.gen.tr/photoshop-psd-iconlar/ Photoshop Psd İcon
http://www.leo.gen.tr/photoshop-download/ Photoshop Download
http://www.leo.gen.tr/photoshop-psd-logo/ Photoshop Psd Logo Psd Signature Psd Banner
http://kurtlarvadisi-pusu.com/ Kurtlar Vadisi
http://kurtlarvadisi-pusu.com/forum/ Kurtlar Vadisi Pusu

Posted by: vbulletin at February 16, 2008 11:45 AM

i did all steps mentioned above.but getting same page from hsqldb,didn't update mysql database.should i recompile all java classes...??i didn't understand..

Posted by: yamuna at February 20, 2008 07:52 AM

thanks

Posted by: seks hikayeleri at February 26, 2008 10:52 PM

Thankss

Posted by: vbulletin at February 29, 2008 10:30 AM

Posted by: ttnet at March 8, 2008 03:06 AM

thanks.good

Posted by: youtube at March 8, 2008 08:26 AM

thanks

Posted by: Video izle at March 8, 2008 08:26 AM

thnaks....

Posted by: oyun at March 11, 2008 05:06 AM

nice

Posted by: güzel sözler at March 11, 2008 11:44 PM

very much.

Posted by: Sinema izle at March 11, 2008 11:45 PM

thx.

Posted by: Sinema Seyret at March 11, 2008 11:45 PM

thakns.

Posted by: online sinema at March 11, 2008 11:46 PM

hi. thx.

Posted by: bedava sinema at March 11, 2008 11:46 PM

super thx.

Posted by: canlı sinema at March 11, 2008 11:47 PM

thanxxxxxxxxxxxxxxx

Posted by: örgü modelleri at March 12, 2008 11:19 AM

thanks...

Posted by: oyunlar at March 13, 2008 01:53 PM

thanks.. Mf

Posted by: prefabrik at March 13, 2008 04:46 PM

Posted by: Play Free Games at March 15, 2008 08:18 PM

thanks...

Posted by: kiz oyunlari at March 16, 2008 12:56 PM

thanks...

Posted by: online games at March 16, 2008 12:57 PM

thanks....

Posted by: oyun at March 16, 2008 12:57 PM

Thanks

Posted by: prefabrik at March 18, 2008 10:08 PM

Thank you

Posted by: prefabrik ev at March 18, 2008 10:09 PM

muhabbet,muhabbet odaları

Posted by: muhabbet at March 19, 2008 08:30 PM

netlog,netlog sohbet

Posted by: netlog at March 19, 2008 08:31 PM

msn nickleri,msn nikleri

Posted by: msn nickleri at March 19, 2008 08:34 PM

yonja,yonja sohbet

Posted by: yonja at March 19, 2008 08:35 PM

msn nickleri,şekilli nickler,msn nikleri,nikler

Posted by: msn nickleri at March 19, 2008 08:36 PM

korku,korku sitesi

Posted by: korku at March 19, 2008 08:37 PM

chat odaları,chat kanalları

Posted by: chat odaları at March 19, 2008 08:39 PM


http://hi.baidu.com/wdgoogle
http://hi.baidu.com/tzjiuge
http://blog.soufun.com/blog_11634198.htm
http://jlj714.blog.bokee.net/
http://blog.ccidnet.com/blog-htm-uid-71265.html
http://blog.soufun.com/blog_20051163.htm
http://jglsx.blog.sohu.com/
http://blog.china.alibaba.com/blog/jglsx.html
http://tw.netsh.com/eden/blog/ctl_eden_blog.php?iBlogID=2610970
http://tw.netsh.com/eden/blog/ctl_eden_blog.php?iBlogID=2632783
http://blog.soufun.com/blog_12178456.html
http://blog.china-pub.com/blog.asp?name=jlb148140960
http://www.phpchina.com/38743
http://www.xiongcaocao.com/babysky
http://jlb999.blog.163.com/
http://jjllbb.eomoo.com/user18/jlb148140960/index.shtml

http://jglsx.blog.hexun.com/
http://xicao1.blog.hexun.com/
http://xicao2.blog.hexun.com/
http://xicao3.blog.hexun.com/
http://xicao4.blog.hexun.com/
http://xicao5.blog.hexun.com/
http://xicao6.blog.hexun.com/
http://xicao7.blog.hexun.com/
http://xicao8.blog.hexun.com/
http://xicao9.blog.hexun.com/
http://zwwsl.blog.hexun.com/
http://baom.blog.hexun.com/
http://shangdonggg.blog.hexun.com/
http://tzjiuge.blog.hexun.com/
http://tzgoogle.blog.hexun.com/
http://wseoer.blog.hexun.com/

http://hexun.com/jglsx/default.html
http://hexun.com/xicao1/default.html
http://hexun.com/xicao2/default.html
http://hexun.com/xicao3/default.html
http://hexun.com/xicao4/default.html
http://hexun.com/xicao5/default.html
http://hexun.com/xicao6/default.html
http://hexun.com/xicao7/default.html
http://hexun.com/xicao8/default.html
http://hexun.com/xicao9/default.html
http://hexun.com/zwwsl/default.html
http://hexun.com/baom/default.html
http://hexun.com/shangdonggg/default.html
http://hexun.com/tzjiuge/default.html
http://hexun.com/tzgoogle/default.html
http://hexun.com/wseoer/default.html

http://jglsx.photo.hexun.com/
http://xicao1.photo.hexun.com/
http://xicao2.photo.hexun.com/
http://xicao3.photo.hexun.com/
http://xicao4.photo.hexun.com/
http://xicao5.photo.hexun.com/
http://xicao6.photo.hexun.com/
http://xicao7.photo.hexun.com/
http://xicao8.photo.hexun.com/
http://xicao9.photo.hexun.com/
http://zwwsl.photo.hexun.com/
http://baom.photo.hexun.com/
http://shangdonggg.photo.hexun.com/
http://tzjiuge.photo.hexun.com/
http://tzgoogle.photo.hexun.com/
http://wseoer.photo.hexun.com/

http://jglsx.blog.hexun.com/16835694_d.html
http://baom.blog.hexun.com/16584310_d.html
http://jglsx.blog.hexun.com/16200582_d.html
http://tzjiuge.blog.hexun.com/17683102_d.html
http://jglsx.blog.hexun.com/17298075_d.html 台州鞋帽服装
http://jglsx.blog.hexun.com/17297964_d.html 台州食品饮料
http://jglsx.blog.hexun.com/17297928_d.html 台州工艺礼品
http://jglsx.blog.hexun.com/17297874_d.html 台州阀门水泵
http://jglsx.blog.hexun.com/17297833_d.html 台州服装机械
http://jglsx.blog.hexun.com/17297802_d.html 台州家电及制冷配件
http://jglsx.blog.hexun.com/17297767_d.html 台州模具塑料
http://jglsx.blog.hexun.com/17297729_d.html 台州医药化工
http://jglsx.blog.hexun.com/17297664_d.html 台州汽摩及配件
http://jglsx.blog.hexun.com/16584787_d.html 北京google左侧排名
http://jglsx.blog.hexun.com/16584751_d.html 广州google左侧排名
http://jglsx.blog.hexun.com/16584670_d.html 上海google左侧排名
http://jglsx.blog.hexun.com/16584624_d.html 杭州google左侧排名

http://www.dingmai.com/hysbzl.htm
http://www.dingmai.com/tsfysb.htm
http://www.dingmai.com
http://www.param.com.cn
http://www.sdggc.com/
http://www.bjseek.com.cn
http://www.sense.com.cn
http://www.0576w.cn/
http://www.0576w.cn/catalog.asp?cate=1
http://www.0576w.cn/catalog.asp?cate=2
http://www.0576w.cn/catalog.asp?cate=3
http://www.0576w.cn/catalog.asp?cate=5
http://www.0576w.cn/catalog.asp?cate=6


Posted by: 数据恢复 at March 19, 2008 11:08 PM

We are still waiting for an answer to the question about using CFC's and Cold Fusion. If you'd like to sell the product that is.

Posted by: donna at March 20, 2008 11:02 AM

Or, check out Blist at Blist.com.

"the world’s easiest database...visually rich and intuitive UI enables non-technical people to work with data as powerfully as if they were supported by an IT staff - without requiring that resource. blist makes relational database creation and management as easy as using a spreadsheet."

Posted by: donna at March 20, 2008 11:06 AM

Posted by: sohbet at April 4, 2008 12:19 AM

thanx man

http://www.erotikciler.com
http://www.erotikciler.com/erotik.html
http://www.erotikciler.com/seks.html
http://www.erotikciler.com//search.php?t=turk+erotik
http://www.erotikciler.com//search.php?t=turk+erotik+flim
http://www.erotikciler.com//search.php?t=erkek+pornosu
http://www.erotikciler.com//search.php?t=turbanli+porno
http://www.erotikciler.com//search.php?t=aydemir+akbas
http://www.erotikciler.com//search.php?t=yerli+porno
http://www.erotikciler.com//search.php?t=yatak+odasi
http://www.erotikciler.com//search.php?t=yerli+porno
http://www.erotikciler.com//search.php?t=seks+teen
http://www.erotikciler.com//search.php?t=erotik+hentai
http://www.erotikciler.com//search.php?t=erotik+resimler
http://www.erotikciler.com//search.php?t=erotik+massage
http://www.erotikciler.com//search.php?t=seks+tv
http://www.erotikciler.com//search.php?t=seksi
http://www.erotikciler.com//search.php?t=filmi+seks
http://www.erotikciler.com/search.php?t=erotik+video
http://www.erotikciler.com/search.php?t=erotik+film
http://www.erotikciler.com/search.php?t=erotik+video+izle
http://www.erotikciler.com/search.php?t=erotik+filmler
http://www.erotikciler.com/search.php?t=porno+film
http://www.erotikciler.com/search.php?t=sex+film
http://www.erotikciler.com/youporn.html
http://www.erotikciler.com/89.html
http://www.erotikciler.com/gaylar.html
http://www.erotikciler.com/sex.html
http://www.erotikciler.com/porno.html
http://www.erotikciler.com/redtube.html
http://www.erotikciler.com/porn.html
http://www.erotikciler.com/sexy.html
http://www.erotikciler.com/gay.html
http://www.erotikciler.com/pornotube.html
http://www.erotikciler.com/search.php?t=ateşli
http://www.erotikciler.com/sibel.html
http://www.erotikciler.com/search.php?t=sıcak
http://www.erotikciler.com/search.php?t=sex+izle
http://www.erotikciler.com/search.php?t=porno+izle
http://www.erotikciler.com/frikik.html
http://www.erotikciler.com/lezbiyen.html
http://www.erotikciler.com/manken.html
http://www.erotikciler.com/search.php?t=sex+videosu
http://www.erotikciler.com/sikisme.html
http://www.erotikciler.com/search.php?t=yasli+porno
http://www.erotikciler.com/search.php?t=hayvanlarla+sikis
http://www.erotikciler.com/search.php?t=gizli+kamera
http://www.erotikciler.com/search.php?t=sibel+kekilli
http://www.erotikciler.com/hamile.html
http://www.erotikciler.com/am.html
http://www.erotikciler.com/yengen.html
http://www.erotikciler.com/search.php?t=hardcore+videolar
http://www.erotikciler.com/search.php?t=fat+sexs
http://www.erotikciler.com/shamele.html
http://www.erotikciler.com/search.php?t=iran+pornosu
http://www.erotikciler.com/search.php?t=canli+porno
http://www.erotikciler.com/search.php?t=oral+sex
http://www.erotikciler.com/sikis.html
http://www.erotikciler.com/search.php?t=turk+porno

Posted by: porno film at April 4, 2008 02:32 PM

Posted by: porno film at April 4, 2008 09:44 PM

Posted by: asdsadasd at April 6, 2008 02:05 PM

Posted by: Youtube at April 10, 2008 07:48 PM

mercy

Posted by: canli radyo dinle at April 15, 2008 07:26 AM

thanks

Posted by: canli tv izle at April 15, 2008 07:27 AM

thanks

Posted by: canli radyo dinle at April 15, 2008 07:28 AM

Posted by: Okey at April 19, 2008 07:14 PM

Post a comment




Remember Me?