Re: Using Django with Microsoft SQL Server

2016-01-07 Thread Sid
I think if you install sql_server.pyodbc it should be fine UNDER databases in *settings.py * 'default': { 'ENGINE': 'sql_server.pyodbc', 'NAME': '--', 'HOST': '', 'USER': '-', 'PASSWORD': '-' documentation:

Re: Django for Data Tables to group by when coloumn hidden

2015-12-14 Thread Sid
Thanks for your reply Carsten. I want to use javascript...I will try to put my question on data-tables as per your suggestion . But thanks again for your reply :) On Wednesday, December 9, 2015 at 10:07:16 AM UTC-5, Sid wrote: > > *Question:* I have a Data table displaying on django , b

Django for Data Tables to group by when coloumn hidden

2015-12-09 Thread Sid
*Question:* I have a Data table displaying on django , but now I like to group by when ever I will hide the column. *column1 column2 column3* AAACAD25 AAAUSD12 BBBCAD13 BBBUSD16 CCCCAD11 CCCUSD18 The above table

instructions to make DATE PICKER work in django

2015-12-07 Thread Sid
MASTER_DDA *according to > *[x] *for *PROCESSING_DATE ,* so what I want is I have to just click on > the datepicker so it has to change the value of *[x] *and display > accordingly on web page > So can anyone please help me to built the code for it please > your help is much

date picker

2015-12-06 Thread Sid
I have to just click on the datepicker so it has to change the value of *[x] *and display accordingly on web page So can anyone please help me to built the code for it please your help is much appreciated. Thanks again. Sid -- You received this message because you are subscribed to the Google

subtract two tables created by connection.cursor and display output on webpage

2015-11-24 Thread Sid
I have displayed two tables on web(i.e table1 and table2) using *connection.cursor* from *SOURCE* table *ISSUE:* Now I have to subtract table1(fields)-table2(fields) and display the output as table3. so *final web page* will have table1,table2,table3 *PROGRAM:* IN

Re: mssql databASE CONNECTION to Django

2015-10-30 Thread Sid
np...but thanks for your time -- 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

Re: mssql databASE CONNECTION to Django

2015-10-30 Thread Sid
sorry tim I know I am asking a dumb question...can you please tell me what is the best way to make it work please if possibe...because I am struck form last 2 days -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: mssql databASE CONNECTION to Django

2015-10-30 Thread Sid
so which version will be compatible... On Friday, October 30, 2015 at 7:54:26 AM UTC-4, Tim Graham wrote: > > django-mssql doesn't support Django 1.8 yet: > > https://django-mssql.readthedocs.org/en/latest/changelog.html > > On Thursday, October 29, 2015 at 9:36:38 PM UTC-4, Si

Re: MySQL queries-connection to django

2015-10-29 Thread Sid
So there is any way before creating model we can connect django sql server 2012 On Wednesday, October 28, 2015 at 11:18:37 PM UTC-4, Mike Dewhirst wrote: > > On 29/10/2015 7:00 AM, Sid wrote: > > I am new to DJANGO... > > You can connect to your database using Django but

mssql databASE CONNECTION to Django

2015-10-29 Thread Sid
*Hi all,* I am trying to connect database which is in server to django, but it is showing many errors like(platform i am using M visual studio) *Traceback (most recent call last):* File "C:\Users\speesary\Desktop\programs\learn\learn\manage.py", line 17, in

MySQL queries-connection to django

2015-10-28 Thread Sid
I am new to DJANGO... so i have installed django,python and using Visual studio as interface, so my question is I have database name :*siddharth* in sql server: *63-W7-MJ021R04\ALMDATA* i want to connect my database(siddharth) to django using settings.py, But i am not understanding how to do it

Re: Cheap Django hosting?

2012-01-03 Thread Sid
@alec If you want to go with a VPS, try http://www.lowendbox.com/ Plenty of cheap throwaway machines, i find webfaction, new PAAS like gondor, ep.io to be too restrictive. Nothing beats root access, and cheaply too! -Sid http://www.sidmitra.com -- You received this message because you

Re: code revision short job

2012-01-03 Thread Sid
Have you tried running Django-debug-toolbar to see how SQL queries are being piled up. -Sid http://www.sidmitra.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google

Re: Integrating Social Auth

2011-10-24 Thread Sid
backends like google. -Sid -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/nT7NGnu0EC8J. To post to this group, send email to django-users@google

Re: Issue uploading photos through the admin. PIL issue.

2010-11-29 Thread Sid
env (venv)$> pip install PIL -Sid sidmitra.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubs

Re: Adding username to the 500 error emails

2010-10-25 Thread Sid
See http://gist.github.com/646372 , which also uses process_exception handler. -Sid http://sidmitra.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubs

Re: How to get request.user when Django emails a 500 error report?

2010-10-25 Thread Sid
I wrote a middleware that adds a process_exception handler. It adds the user info to the request.META so they show up in emails. See http://gist.github.com/646372 You can modify that to add any info to the emails. Sid http://sidmitra.com On Oct 16, 3:20 am, Margie Roginski <margiero

Re: altering the sessions class

2010-07-15 Thread Sid
I think a custom middleware solution might work here? Just have a custom middleware run initially that adds the instance of your session class to the request object. I haven't tried anything like this before but it might work. -Sid On Jul 14, 11:42 pm, "T.L" <tonyl7...@gmail.com>

Re: Anyone want to take over maintaining Instant Django?

2010-07-15 Thread Sid
I would be willing to take it on or we can also do it as a community effort? Instant Django is how i got started into web dev and now i'm a full time django freelancer so would love to give some love back. -Sid http://sidmitra.com -- You received this message because you are subscribed

Re: Help: Should I use Admin site for everything?

2009-12-17 Thread Sid
There are some audit trail stuff available for Django http://code.google.com/p/fullhistory/ http://code.djangoproject.com/wiki/AuditTrail -Sid -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Django web flow

2009-11-22 Thread Sid
> Err... Do we have to read Spring's doc to find out what this means ? "The Spring Web MVC framework offers a slightly higher level of functionality: form controllers that implement a predefined work flow. " Source: http://www.ervacon.com/products/swf/intro/index.html -- You received this

Re: Trouble on Apache: unable to open database file

2009-10-17 Thread Sid
I guess you're using SQLite as your database. It's a file permission error. If you're on linux try "chmod 777 test.db" to change the file permissions. And also!!, keep in mind that the directory that the DB file is should also be writable. So do a chmod on the dir as well to test it

Re: What JavaScript framework do you use and why?

2009-09-29 Thread Sid
You might wanna check out - http://mochaui.com/demo/ if you're planning to use MooTools. Although i haven't used it yet, but it looks awesome and i haven't found a UI framework for jQuery that cohesive. On Sep 28, 6:37 pm, Joshua Russo wrote: > MooTools does look

Django generate unique sequence for each organisation in a SaaS app

2009-09-15 Thread Sid
I'm working on a django SaaS app, which hosts data for multiple organisations. Each record in a table has a unique RecordNumber. I could use autofield to give each record a unique incrementing Id automatically, but that is globally unique. As in org1 might have say, RecordNum=1 or 2 or 7 etc and

Model Forms

2009-08-27 Thread Sid
I have 2 models say A and B, B has A has a foreign key reference to A. There is a model form created for mode B called as BForm. Now If i create instance of BForm and display it in a page, foreign key field appears as a drop down choice box in the form. Instead of this if i set instance of B to

Re: webcam in a web page

2009-08-21 Thread Sid
look at justin.tv as well. I think you can embed your live feed, onto a webpage. -Sid --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj