[google-appengine] Re: Database with google application engine

2010-06-16 Thread Tristan
Not possible. Datastore is the only option. If you want to use MySQL,
you would have to host it on Amazon (or other such service) and then
you'd have to set up all persistence operations to talk to the Amazon
service.

There is an SQL solution in the works for the Google App Engine for
Business (for Google Apps domains only), but it has not been released
yet.

On Jun 16, 7:00 am, jitendra singh  wrote:
> Hi,
> I am trying to develop and deploy a project with google application
> engine and for this I want to use Mysql5.0 as a database. Is it
> possible to use Mysql5.0 with GAE or google datastore is the only one
> option. If we can use Mysql5.0, how will i configure it online during
> the time of deployment. At localhost, I am trying to use Mysql5.0 with
> eclipse galileo3.5 with google eclipse plugin and sdk plugin and gwt
> plugin but it is giving the following error although I am using mysql-
> connector-java-5.0.3-bin.jar file for jdbc driver:
>
> java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
>         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
>         at java.security.AccessController.doPrivileged(Native Method)
>         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
>         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
>         at
> com.google.appengine.tools.development.IsolatedAppClassLoader.loadClass(Iso 
> latedAppClassLoader.java:
> 151)
>         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
>         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
>         at java.lang.Class.forName0(Native Method)
>         at java.lang.Class.forName(Class.java:164)
>         at database.dbConn.query(dbConn.java:137)
>         at admin.AdminFunctions.verifyAdminLogin(AdminFunctions.java:16)
>         at admin.AdminServ.doGet(AdminServ.java:46)
>         at admin.AdminServ.doPost(AdminServ.java:112)
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
>         at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:
> 511)
>         at org.mortbay.jetty.servlet.ServletHandler
> $CachedChain.doFilter(ServletHandler.java:1166)
>         at
> com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFi 
> lter.java:
> 51)
>         at org.mortbay.jetty.servlet.ServletHandler
> $CachedChain.doFilter(ServletHandler.java:1157)
>         at
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(Trans 
> actionCleanupFilter.java:
> 43)
>         at org.mortbay.jetty.servlet.ServletHandler
> $CachedChain.doFilter(ServletHandler.java:1157)
>         at
> com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFile 
> Filter.java:
> 122)
>         at org.mortbay.jetty.servlet.ServletHandler
> $CachedChain.doFilter(ServletHandler.java:1157)
>         at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
> 388)
>         at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
> 216)
>         at
> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:
> 182)
>         at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:
> 765)
>         at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:
> 418)
>         at
> com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEn 
> gineWebAppContext.java:
> 70)
>         at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
> 152)
>         at com.google.appengine.tools.development.JettyContainerService
> $ApiProxyHandler.handle(JettyContainerService.java:349)
>         at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
> 152)
>         at org.mortbay.jetty.Server.handle(Server.java:326)
>         at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:
> 542)
>         at org.mortbay.jetty.HttpConnection
> $RequestHandler.content(HttpConnection.java:938)
>         at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
>         at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
>         at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
>         at
> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:
> 409)
>         at org.mortbay.thread.QueuedThreadPool
> $PoolThread.run(QueuedThreadPool.java:582)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Database with google application engine

2012-08-08 Thread vikash chaurasia
Hi,

Is MYSQL solution available now?

Can we use MySQL in GAE project and deploy it on GAE server?

Thanks
Vikash

On Wednesday, June 16, 2010 10:02:10 PM UTC+2, Tristan wrote:
>
> Not possible. Datastore is the only option. If you want to use MySQL, 
> you would have to host it on Amazon (or other such service) and then 
> you'd have to set up all persistence operations to talk to the Amazon 
> service. 
>
> There is an SQL solution in the works for the Google App Engine for 
> Business (for Google Apps domains only), but it has not been released 
> yet. 
>
> On Jun 16, 7:00 am, jitendra singh  wrote: 
> > Hi, 
> > I am trying to develop and deploy a project with google application 
> > engine and for this I want to use Mysql5.0 as a database. Is it 
> > possible to use Mysql5.0 with GAE or google datastore is the only one 
> > option. If we can use Mysql5.0, how will i configure it online during 
> > the time of deployment. At localhost, I am trying to use Mysql5.0 with 
> > eclipse galileo3.5 with google eclipse plugin and sdk plugin and gwt 
> > plugin but it is giving the following error although I am using mysql- 
> > connector-java-5.0.3-bin.jar file for jdbc driver: 
> > 
> > java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 
> > at java.net.URLClassLoader$1.run(URLClassLoader.java:200) 
> > at java.security.AccessController.doPrivileged(Native Method) 
> > at java.net.URLClassLoader.findClass(URLClassLoader.java:188) 
> > at java.lang.ClassLoader.loadClass(ClassLoader.java:306) 
> > at 
> > 
> com.google.appengine.tools.development.IsolatedAppClassLoader.loadClass(Iso 
> latedAppClassLoader.java: 
> > 151) 
> > at java.lang.ClassLoader.loadClass(ClassLoader.java:251) 
> > at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) 
> > at java.lang.Class.forName0(Native Method) 
> > at java.lang.Class.forName(Class.java:164) 
> > at database.dbConn.query(dbConn.java:137) 
> > at admin.AdminFunctions.verifyAdminLogin(AdminFunctions.java:16) 
> > at admin.AdminServ.doGet(AdminServ.java:46) 
> > at admin.AdminServ.doPost(AdminServ.java:112) 
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:713) 
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:806) 
> > at 
> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java: 
> > 511) 
> > at org.mortbay.jetty.servlet.ServletHandler 
> > $CachedChain.doFilter(ServletHandler.java:1166) 
> > at 
> > 
> com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFi 
> lter.java: 
> > 51) 
> > at org.mortbay.jetty.servlet.ServletHandler 
> > $CachedChain.doFilter(ServletHandler.java:1157) 
> > at 
> > 
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(Trans 
> actionCleanupFilter.java: 
> > 43) 
> > at org.mortbay.jetty.servlet.ServletHandler 
> > $CachedChain.doFilter(ServletHandler.java:1157) 
> > at 
> > 
> com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFile 
> Filter.java: 
> > 122) 
> > at org.mortbay.jetty.servlet.ServletHandler 
> > $CachedChain.doFilter(ServletHandler.java:1157) 
> > at 
> > org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java: 
> > 388) 
> > at 
> > org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java: 
> > 216) 
> > at 
> > org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java: 
> > 182) 
> > at 
> > org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java: 
> > 765) 
> > at 
> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java: 
> > 418) 
> > at 
> > 
> com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEn 
> gineWebAppContext.java: 
> > 70) 
> > at 
> > org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java: 
> > 152) 
> > at com.google.appengine.tools.development.JettyContainerService 
> > $ApiProxyHandler.handle(JettyContainerService.java:349) 
> > at 
> > org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java: 
> > 152) 
> > at org.mortbay.jetty.Server.handle(Server.java:326) 
> > at 
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java: 
> > 542) 
> > at org.mortbay.jetty.HttpConnection 
> > $RequestHandler.content(HttpConnection.java:938) 
> > at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755) 
> > at 
> org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218) 
> > at 
> org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) 
> > at 
> > org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java: 
> > 409) 
> > at org.mortbay.thread.QueuedThreadPool 
> > $PoolThread.run(QueuedThreadPool.java:582)

-- 
You received this message because

Re: [google-appengine] Re: Database with google application engine

2012-08-08 Thread Takashi Matsuo
Yes. Please go visit https://developers.google.com/cloud-sql/ and read
our documentation.
Python: 
https://developers.google.com/appengine/docs/python/cloud-sql/developers-guide
Java: 
https://developers.google.com/appengine/docs/java/cloud-sql/developers-guide

-- Takashi

On Tue, Aug 7, 2012 at 4:54 PM, vikash chaurasia
 wrote:
> Hi,
>
> Is MYSQL solution available now?
>
> Can we use MySQL in GAE project and deploy it on GAE server?
>
> Thanks
> Vikash
>
> On Wednesday, June 16, 2010 10:02:10 PM UTC+2, Tristan wrote:
>>
>> Not possible. Datastore is the only option. If you want to use MySQL,
>> you would have to host it on Amazon (or other such service) and then
>> you'd have to set up all persistence operations to talk to the Amazon
>> service.
>>
>> There is an SQL solution in the works for the Google App Engine for
>> Business (for Google Apps domains only), but it has not been released
>> yet.
>>
>> On Jun 16, 7:00 am, jitendra singh  wrote:
>> > Hi,
>> > I am trying to develop and deploy a project with google application
>> > engine and for this I want to use Mysql5.0 as a database. Is it
>> > possible to use Mysql5.0 with GAE or google datastore is the only one
>> > option. If we can use Mysql5.0, how will i configure it online during
>> > the time of deployment. At localhost, I am trying to use Mysql5.0 with
>> > eclipse galileo3.5 with google eclipse plugin and sdk plugin and gwt
>> > plugin but it is giving the following error although I am using mysql-
>> > connector-java-5.0.3-bin.jar file for jdbc driver:
>> >
>> > java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
>> > at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
>> > at java.security.AccessController.doPrivileged(Native Method)
>> > at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
>> > at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
>> > at
>> >
>> > com.google.appengine.tools.development.IsolatedAppClassLoader.loadClass(Iso
>> > latedAppClassLoader.java:
>> > 151)
>> > at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
>> > at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
>> > at java.lang.Class.forName0(Native Method)
>> > at java.lang.Class.forName(Class.java:164)
>> > at database.dbConn.query(dbConn.java:137)
>> > at admin.AdminFunctions.verifyAdminLogin(AdminFunctions.java:16)
>> > at admin.AdminServ.doGet(AdminServ.java:46)
>> > at admin.AdminServ.doPost(AdminServ.java:112)
>> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
>> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
>> > at
>> > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:
>> > 511)
>> > at org.mortbay.jetty.servlet.ServletHandler
>> > $CachedChain.doFilter(ServletHandler.java:1166)
>> > at
>> >
>> > com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFi
>> > lter.java:
>> > 51)
>> > at org.mortbay.jetty.servlet.ServletHandler
>> > $CachedChain.doFilter(ServletHandler.java:1157)
>> > at
>> >
>> > com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(Trans
>> > actionCleanupFilter.java:
>> > 43)
>> > at org.mortbay.jetty.servlet.ServletHandler
>> > $CachedChain.doFilter(ServletHandler.java:1157)
>> > at
>> >
>> > com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFile
>> > Filter.java:
>> > 122)
>> > at org.mortbay.jetty.servlet.ServletHandler
>> > $CachedChain.doFilter(ServletHandler.java:1157)
>> > at
>> > org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
>> > 388)
>> > at
>> > org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
>> > 216)
>> > at
>> > org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:
>> > 182)
>> > at
>> > org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:
>> > 765)
>> > at
>> > org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:
>> > 418)
>> > at
>> >
>> > com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEn
>> > gineWebAppContext.java:
>> > 70)
>> > at
>> > org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
>> > 152)
>> > at com.google.appengine.tools.development.JettyContainerService
>> > $ApiProxyHandler.handle(JettyContainerService.java:349)
>> > at
>> > org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
>> > 152)
>> > at org.mortbay.jetty.Server.handle(Server.java:326)
>> > at
>> > org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:
>> > 542)
>> > at org.mortbay.jetty.HttpConnection
>> > $RequestHandler.content(HttpConnection.java:938)
>> > at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
>> > at
>> > org.mortbay

Re: [google-appengine] Re: Database with google application engine

2012-08-12 Thread vikash chaurasia
Hi Takashi,
 
Thanks for reply.
 
Is it free for development purpose?
 
If we are using MySQL in GAE project, using MySQL as DB, can we deploy the 
application on GAE?
 
How/where can we claim for free quota for Cloud SQL, if it is possible?
 
Please suggest.
 
Thanks,
Vikash
 
On Wednesday, August 8, 2012 1:10:54 PM UTC+5:30, Takashi Matsuo (Google) 
wrote:

> Yes. Please go visit https://developers.google.com/cloud-sql/ and read 
> our documentation. 
> Python: 
> https://developers.google.com/appengine/docs/python/cloud-sql/developers-guide
>  
> Java: 
> https://developers.google.com/appengine/docs/java/cloud-sql/developers-guide 
>
> -- Takashi 
>
> On Tue, Aug 7, 2012 at 4:54 PM, vikash chaurasia 
> > wrote: 
> > Hi, 
> > 
> > Is MYSQL solution available now? 
> > 
> > Can we use MySQL in GAE project and deploy it on GAE server? 
> > 
> > Thanks 
> > Vikash 
> > 
> > On Wednesday, June 16, 2010 10:02:10 PM UTC+2, Tristan wrote: 
> >> 
> >> Not possible. Datastore is the only option. If you want to use MySQL, 
> >> you would have to host it on Amazon (or other such service) and then 
> >> you'd have to set up all persistence operations to talk to the Amazon 
> >> service. 
> >> 
> >> There is an SQL solution in the works for the Google App Engine for 
> >> Business (for Google Apps domains only), but it has not been released 
> >> yet. 
> >> 
> >> On Jun 16, 7:00 am, jitendra singh  wrote: 
> >> > Hi, 
> >> > I am trying to develop and deploy a project with google application 
> >> > engine and for this I want to use Mysql5.0 as a database. Is it 
> >> > possible to use Mysql5.0 with GAE or google datastore is the only one 
> >> > option. If we can use Mysql5.0, how will i configure it online during 
> >> > the time of deployment. At localhost, I am trying to use Mysql5.0 
> with 
> >> > eclipse galileo3.5 with google eclipse plugin and sdk plugin and gwt 
> >> > plugin but it is giving the following error although I am using 
> mysql- 
> >> > connector-java-5.0.3-bin.jar file for jdbc driver: 
> >> > 
> >> > java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 
> >> > at java.net.URLClassLoader$1.run(URLClassLoader.java:200) 
> >> > at java.security.AccessController.doPrivileged(Native Method) 
> >> > at java.net.URLClassLoader.findClass(URLClassLoader.java:188) 
> >> > at java.lang.ClassLoader.loadClass(ClassLoader.java:306) 
> >> > at 
> >> > 
> >> > 
> com.google.appengine.tools.development.IsolatedAppClassLoader.loadClass(Iso 
> >> > latedAppClassLoader.java: 
> >> > 151) 
> >> > at java.lang.ClassLoader.loadClass(ClassLoader.java:251) 
> >> > at 
> java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) 
> >> > at java.lang.Class.forName0(Native Method) 
> >> > at java.lang.Class.forName(Class.java:164) 
> >> > at database.dbConn.query(dbConn.java:137) 
> >> > at 
> admin.AdminFunctions.verifyAdminLogin(AdminFunctions.java:16) 
> >> > at admin.AdminServ.doGet(AdminServ.java:46) 
> >> > at admin.AdminServ.doPost(AdminServ.java:112) 
> >> > at 
> javax.servlet.http.HttpServlet.service(HttpServlet.java:713) 
> >> > at 
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806) 
> >> > at 
> >> > org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java: 
> >> > 511) 
> >> > at org.mortbay.jetty.servlet.ServletHandler 
> >> > $CachedChain.doFilter(ServletHandler.java:1166) 
> >> > at 
> >> > 
> >> > 
> com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFi 
> >> > lter.java: 
> >> > 51) 
> >> > at org.mortbay.jetty.servlet.ServletHandler 
> >> > $CachedChain.doFilter(ServletHandler.java:1157) 
> >> > at 
> >> > 
> >> > 
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(Trans 
> >> > actionCleanupFilter.java: 
> >> > 43) 
> >> > at org.mortbay.jetty.servlet.ServletHandler 
> >> > $CachedChain.doFilter(ServletHandler.java:1157) 
> >> > at 
> >> > 
> >> > 
> com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFile 
> >> > Filter.java: 
> >> > 122) 
> >> > at org.mortbay.jetty.servlet.ServletHandler 
> >> > $CachedChain.doFilter(ServletHandler.java:1157) 
> >> > at 
> >> > org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java: 
> >> > 388) 
> >> > at 
> >> > 
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java: 
> >> > 216) 
> >> > at 
> >> > org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java: 
> >> > 182) 
> >> > at 
> >> > org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java: 
> >> > 765) 
> >> > at 
> >> > org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java: 
> >> > 418) 
> >> > at 
> >> > 
> >> > 
> com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEn 
> >> > gineWebAppContext.java: 
> >> 

Re: [google-appengine] Re: Database with google application engine

2012-08-15 Thread Takashi Matsuo
Hi Vikash,

On Mon, Aug 13, 2012 at 2:06 PM, vikash chaurasia <
vikash.chaura...@gmail.com> wrote:

> Hi Takashi,
>
> Thanks for reply.
>
> Is it free for development purpose?
>

If you install mysql to your local development environment, it's free.


>
> If we are using MySQL in GAE project, using MySQL as DB, can we deploy the
> application on GAE?
>

Yes.


> How/where can we claim for free quota for Cloud SQL, if it is possible?
>

AFAIK, now it's not possible.


>
> Please suggest.
>
> Thanks,
> Vikash
>
> On Wednesday, August 8, 2012 1:10:54 PM UTC+5:30, Takashi Matsuo (Google)
> wrote:
>
>> Yes. Please go visit 
>> https://developers.google.com/**cloud-sql/and
>>  read
>> our documentation.
>> Python: https://developers.google.com/**appengine/docs/python/cloud-**
>> sql/developers-guide
>> Java: https://developers.google.com/**appengine/docs/java/cloud-sql/**
>> developers-guide
>>
>> -- Takashi
>>
>> On Tue, Aug 7, 2012 at 4:54 PM, vikash chaurasia
>>  wrote:
>> > Hi,
>> >
>> > Is MYSQL solution available now?
>> >
>> > Can we use MySQL in GAE project and deploy it on GAE server?
>> >
>> > Thanks
>> > Vikash
>> >
>> > On Wednesday, June 16, 2010 10:02:10 PM UTC+2, Tristan wrote:
>> >>
>> >> Not possible. Datastore is the only option. If you want to use MySQL,
>> >> you would have to host it on Amazon (or other such service) and then
>> >> you'd have to set up all persistence operations to talk to the Amazon
>> >> service.
>> >>
>> >> There is an SQL solution in the works for the Google App Engine for
>> >> Business (for Google Apps domains only), but it has not been released
>> >> yet.
>> >>
>> >> On Jun 16, 7:00 am, jitendra singh  wrote:
>> >> > Hi,
>> >> > I am trying to develop and deploy a project with google application
>> >> > engine and for this I want to use Mysql5.0 as a database. Is it
>> >> > possible to use Mysql5.0 with GAE or google datastore is the only
>> one
>> >> > option. If we can use Mysql5.0, how will i configure it online
>> during
>> >> > the time of deployment. At localhost, I am trying to use Mysql5.0
>> with
>> >> > eclipse galileo3.5 with google eclipse plugin and sdk plugin and gwt
>> >> > plugin but it is giving the following error although I am using
>> mysql-
>> >> > connector-java-5.0.3-bin.jar file for jdbc driver:
>> >> >
>> >> > java.lang.**ClassNotFoundException: com.mysql.jdbc.Driver
>> >> > at java.net.URLClassLoader$1.run(**URLClassLoader.java:200)
>> >> > at java.security.**AccessController.doPrivileged(**Native
>> Method)
>> >> > at java.net.URLClassLoader.**findClass(URLClassLoader.java:*
>> *188)
>> >> > at java.lang.ClassLoader.**loadClass(ClassLoader.java:**306)
>>
>> >> > at
>> >> >
>> >> > com.google.appengine.tools.**development.**IsolatedAppClassLoader.**loadClass(Iso
>>
>> >> > latedAppClassLoader.java:
>> >> > 151)
>> >> > at java.lang.ClassLoader.**loadClass(ClassLoader.java:**251)
>>
>> >> > at 
>> >> > java.lang.ClassLoader.**loadClassInternal(ClassLoader.**java:319)
>>
>> >> > at java.lang.Class.forName0(**Native Method)
>> >> > at java.lang.Class.forName(Class.**java:164)
>> >> > at database.dbConn.query(dbConn.**java:137)
>> >> > at 
>> >> > admin.AdminFunctions.**verifyAdminLogin(**AdminFunctions.java:16)
>>
>> >> > at admin.AdminServ.doGet(**AdminServ.java:46)
>> >> > at admin.AdminServ.doPost(**AdminServ.java:112)
>> >> > at 
>> >> > javax.servlet.http.**HttpServlet.service(**HttpServlet.java:713)
>>
>> >> > at 
>> >> > javax.servlet.http.**HttpServlet.service(**HttpServlet.java:806)
>>
>> >> > at
>> >> > org.mortbay.jetty.servlet.**ServletHolder.handle(**ServletHolder.java:
>>
>> >> > 511)
>> >> > at org.mortbay.jetty.servlet.**ServletHandler
>> >> > $CachedChain.doFilter(**ServletHandler.java:1166)
>> >> > at
>> >> >
>> >> > com.google.appengine.api.**blobstore.dev.ServeBlobFilter.**doFilter(ServeBlobFi
>>
>> >> > lter.java:
>> >> > 51)
>> >> > at org.mortbay.jetty.servlet.**ServletHandler
>> >> > $CachedChain.doFilter(**ServletHandler.java:1157)
>> >> > at
>> >> >
>> >> > com.google.apphosting.utils.**servlet.**TransactionCleanupFilter.**doFilter(Trans
>>
>> >> > actionCleanupFilter.java:
>> >> > 43)
>> >> > at org.mortbay.jetty.servlet.**ServletHandler
>> >> > $CachedChain.doFilter(**ServletHandler.java:1157)
>> >> > at
>> >> >
>> >> > com.google.appengine.tools.**development.StaticFileFilter.**doFilter(StaticFile
>>
>> >> > Filter.java:
>> >> > 122)
>> >> > at org.mortbay.jetty.servlet.**ServletHandler
>> >> > $CachedChain.doFilter(**ServletHandler.java:1157)
>> >> > at
>> >> > org.mortbay.jetty.servlet.**ServletHandler.handle(**ServletHandler.java