Re: Embeding HSQLDB in a standalone App

2015-05-20 Thread Bill Freeman
Can you access the js files via their static urls?
Does your html load the js (e.g. in script tags)?
Can you make it work with html accessed via file:/// type urls (keeping
django out of the mix)?

On Tue, May 19, 2015 at 10:06 PM, Robert librado 
wrote:

> Anybody understand how to connect Django and Jquery UI together I
> downloaded the Files and added to the site and added html and inserted the
> code yet it does not do the jquery motions like drag just comes out plain
> Ive done python manage.py collectstatic
>
> On Tue, May 19, 2015 at 7:57 PM, Russell Keith-Magee <
> russ...@keith-magee.com> wrote:
>
>>
>> On Tue, May 19, 2015 at 7:49 PM, Kapil Solanki 
>> wrote:
>>
>>> Hi All,
>>>
>>> I need to embed hsqldb in my project. I have been looking for solution
>>> online but couldnt find a proper one.
>>> BDW am new to django and python so its bit difficult also for me to
>>> search the right solution.
>>> Please suggest if there is any hsqldb llibraries or any module for
>>> django app which i can include and start performing db operation in my app.
>>>
>>
>> My guess - you'll need to use the JDBC interface. There are several JDBC
>> libraries for python; I have no idea how robust they are, but if there
>> isn't a well known Python API for HSQLDB, using JDBC will be your best
>> option.
>>
>> Yours,
>> Russ Magee %-)
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJxq84--Q%3D5zh5rfuQUFB6bbq4Qi8SAXMv8_Nmca036VQc1bYw%40mail.gmail.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAAmfpZ1qi7qdrsS9CCSS_VV3u3JB-%3DKG1TbYgzJ6iFeQqZVEHA%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAB%2BAj0vmUzV5RX_CS_43TpgLfEXvjNc9KbFQNRt5c%3D7cGzhUpw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Embeding HSQLDB in a standalone App

2015-05-19 Thread Robert librado
Anybody understand how to connect Django and Jquery UI together I
downloaded the Files and added to the site and added html and inserted the
code yet it does not do the jquery motions like drag just comes out plain
Ive done python manage.py collectstatic

On Tue, May 19, 2015 at 7:57 PM, Russell Keith-Magee <
russ...@keith-magee.com> wrote:

>
> On Tue, May 19, 2015 at 7:49 PM, Kapil Solanki 
> wrote:
>
>> Hi All,
>>
>> I need to embed hsqldb in my project. I have been looking for solution
>> online but couldnt find a proper one.
>> BDW am new to django and python so its bit difficult also for me to
>> search the right solution.
>> Please suggest if there is any hsqldb llibraries or any module for django
>> app which i can include and start performing db operation in my app.
>>
>
> My guess - you'll need to use the JDBC interface. There are several JDBC
> libraries for python; I have no idea how robust they are, but if there
> isn't a well known Python API for HSQLDB, using JDBC will be your best
> option.
>
> Yours,
> Russ Magee %-)
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJxq84--Q%3D5zh5rfuQUFB6bbq4Qi8SAXMv8_Nmca036VQc1bYw%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAmfpZ1qi7qdrsS9CCSS_VV3u3JB-%3DKG1TbYgzJ6iFeQqZVEHA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Embeding HSQLDB in a standalone App

2015-05-19 Thread Russell Keith-Magee
On Tue, May 19, 2015 at 7:49 PM, Kapil Solanki 
wrote:

> Hi All,
>
> I need to embed hsqldb in my project. I have been looking for solution
> online but couldnt find a proper one.
> BDW am new to django and python so its bit difficult also for me to search
> the right solution.
> Please suggest if there is any hsqldb llibraries or any module for django
> app which i can include and start performing db operation in my app.
>

My guess - you'll need to use the JDBC interface. There are several JDBC
libraries for python; I have no idea how robust they are, but if there
isn't a well known Python API for HSQLDB, using JDBC will be your best
option.

Yours,
Russ Magee %-)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJxq84--Q%3D5zh5rfuQUFB6bbq4Qi8SAXMv8_Nmca036VQc1bYw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Embeding HSQLDB in a standalone App

2015-05-19 Thread Kapil Solanki
Thanks for your reply Javier. You are right, it can be done using java. I 
can make use of Jython to invoke a java code but i am looking for python 
library if it is available for hsqldb.
I wish i could change my project to java but thats not an option for now.

On Tuesday, May 19, 2015 at 7:15:14 PM UTC+5:30, Javier Guerra wrote:
>
> On Tue, May 19, 2015 at 6:49 AM, Kapil Solanki  > wrote: 
> > I need to embed hsqldb in my project. I have been looking for solution 
> > online but couldnt find a proper one. 
>
>
> AFAICT, hsqldb is a Java library, you need a Java program to call it. 
>
> Maybe it's possible to call the JVM from Python... or write a 
> standalone Java program and drive it from Python... not what i would 
> call "a proper solution". 
>
> the cleanest solution seems to be doing your project in Java. 
>
> -- 
> Javier 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b328f519-3376-4977-b25d-c9c0a11e5598%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Embeding HSQLDB in a standalone App

2015-05-19 Thread Javier Guerra Giraldez
On Tue, May 19, 2015 at 6:49 AM, Kapil Solanki  wrote:
> I need to embed hsqldb in my project. I have been looking for solution
> online but couldnt find a proper one.


AFAICT, hsqldb is a Java library, you need a Java program to call it.

Maybe it's possible to call the JVM from Python... or write a
standalone Java program and drive it from Python... not what i would
call "a proper solution".

the cleanest solution seems to be doing your project in Java.

-- 
Javier

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFkDaoSEcyc4MoK1Vpkvq3%3DCH%3DHZ4%3D7brN0Vu9YdkS2E3pQTjA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Embeding HSQLDB in a standalone App

2015-05-19 Thread Kapil Solanki
Hi All,

I need to embed hsqldb in my project. I have been looking for solution 
online but couldnt find a proper one.
BDW am new to django and python so its bit difficult also for me to search 
the right solution. 
Please suggest if there is any hsqldb llibraries or any module for django 
app which i can include and start performing db operation in my app.

Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4e2824d9-2f56-4aed-8b1d-7eadced43a8c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.