[Tutor] Oracle forms

2018-03-22 Thread David Holland via Tutor
Is there anyway I can use Python to fill in an Oracle form rather than typing it in myself.I.e take values from a .csv file and put them into an Oracle form.Any ideas (I have googled it) what libraries to use? ___ Tutor maillist - Tutor@python.org T

[Tutor] Matrix help

2018-03-22 Thread Connie Callaghan
Hi, I was just looking help for a matrix that I am building, it needs to look like this 1, 0, 0, ...,0 A,b,c,0,...,0 0,a,b,c,...,0 0,0,a,b,c,..0 0,0,0,a,b,c,...,0 0,0,0,0...0, 1 It has n rows and columns and the first and last line has to have 1s at the corners as shown, and a,b,c going diago

Re: [Tutor] Oracle forms

2018-03-22 Thread Peter Otten
David Holland via Tutor wrote: > Is there anyway I can use Python to fill in an Oracle form rather than > typing it in myself.I.e take values from a .csv file and put them into an > Oracle form.Any ideas (I have googled it) what libraries to use? If I understand you correctly you want to enter da

Re: [Tutor] Oracle forms

2018-03-22 Thread Mats Wichmann
On 03/22/2018 11:35 AM, Peter Otten wrote: > David Holland via Tutor wrote: > >> Is there anyway I can use Python to fill in an Oracle form rather than >> typing it in myself.I.e take values from a .csv file and put them into an >> Oracle form.Any ideas (I have googled it) what libraries to use? >

Re: [Tutor] Oracle forms

2018-03-22 Thread Alan Gauld via Tutor
On 22/03/18 15:22, David Holland via Tutor wrote: > Is there anyway I can use Python to fill in an Oracle form What kind of Oracle form? There are at least 2 that I'm aware of. 1) The Oracle Forms thick client app framework which runs on a PC and connects to the database server. (I believe thi

Re: [Tutor] Matrix help

2018-03-22 Thread Peter Otten
Connie Callaghan wrote: > Hi, > I was just looking help for a matrix that I am building, it needs to look > like this 1, 0, 0, ...,0 > A,b,c,0,...,0 > 0,a,b,c,...,0 > 0,0,a,b,c,..0 > 0,0,0,a,b,c,...,0 > 0,0,0,0...0, 1 > > It has n rows and columns and the first and last line has to have 1s at > t

Re: [Tutor] Matrix help

2018-03-22 Thread Alan Gauld via Tutor
On 22/03/18 11:35, Connie Callaghan wrote: > Hi, > I was just looking help for a matrix that I am building, it needs to look > like this > 1, 0, 0, ...,0 > A,b,c,0,...,0 > 0,a,b,c,...,0 > 0,0,a,b,c,..0 > 0,0,0,a,b,c,...,0 > 0,0,0,0...0, 1 What exactly are the a,b,c values? Are they variables o