On Thu, Dec 29, 2005 at 08:10:52AM +0100, ShepherdHill DB Subscriptions wrote:
> Please as a superuser how would I obtain an equivalent of this query:
>
> SELECT * FROM pg_shadow WHERE usename='userid' AND md5(passwd)='passwd'
SELECT *
FROM pg_shadow
WHERE usename = 'userid' AND passwd = 'md5' ||
>
> "Gregory S. Williamson" <[EMAIL PROTECTED]> wrote:
> > Petr,
> >
> > As long as the new server is the same operating system, and the versions of
> > postgres are the same,
> <...>
>
> As a clarification, 'versions are the same' needs to be more strict than the
> version number (e.g. 8.1.
On Tue, Dec 27, 2005 at 15:49:43 -0800,
"Gregory S. Williamson" <[EMAIL PROTECTED]> wrote:
> Petr,
>
> As long as the new server is the same operating system, and the versions of
> postgres are the same, you can do a binary copy of the data directory and
> move it to the new machine, point the
Thanks, Jim. I've been playing with OraToPG. So far I've found a
couple small problems with it that I'll probably solve with some
simple Perl, but overall its a very handy tool.
I'll try to post a success story when I get this all straightened
out.
Cheers,
-M@
On Dec 28, 2005, at 1
Hi,
Please as a superuser how would I obtain an equivalent of this query:
SELECT * FROM pg_shadow WHERE usename='userid' AND md5(passwd)='passwd'
I browse the content of the pg_shadow and the passwd field shows
something like md5...
All I am after is to validate a user against pg_shadow table i
On Dec 28, 2005, at 10:03 PM, Thomas F. O'Connell wrote:
[snip]
If the column alias is being declared in the subselect, the column
alias
is working.
select version();
version
-
-
PostgreSQ
On Dec 2, 2005, at 6:00 AM, Markus Wollny wrote:
Hi!
Is this the expected behaviour?
select ID
, USK_RATING AS USK
from (
select ID
, USK_RATING
from MAIN_SONY_PS2_GAME
where ID = 101400
limit 1
)
as PRODUCT_LIST
limit 1;
id | usk_rating
+
""xiapw"" <[EMAIL PROTECTED]> wrote
> Hi guys,can you give me some advices about how to improve the security of
> postgresql?
> Now I major in the security of postgresql and the destination is create a
> database with security level of B1(TCSEC),what should I do now,what
> program language shou
=?iso-8859-1?Q?Klein_Bal=E1zs?= <[EMAIL PROTECTED]> writes:
> Could you explain this a little bit more?
> What are the conditions of this situation that makes b-tree ineffective?
Well, what he's trying to do is (abstracting a little)
WHERE low_bound_col <= probe_value AND probe_value <= high_
Please see below
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ted Byers
Sent: Wednesday, December 28, 2005 7:29 PM
To: Frank L. Parks; pgsql-general@postgresql.org
Subject: Re: [Bulk] Re: [GENERAL] Final stored procedure question, for now
anyway
-
Could you explain this a little bit more?
What are the conditions of this situation that makes b-tree ineffective?
Thanks
SWK
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom Lane
Sent: 2005. december 28. 20:04
To: Jim C. Nasby
Cc: Eugene; pgsql-gener
Hi guys,can you give me some advices about how to improve the
security of postgresql?
Now I major in the security of postgresql and the destination
is create a database with security level of B1(TCSEC),what should I do now,what
program language should I use?
Thanks!
Sting
- Original Message -
From: "Frank L. Parks" <[EMAIL PROTECTED]>
To:
Sent: Wednesday, December 28, 2005 7:27 PM
Subject: [Bulk] Re: [GENERAL] Final stored procedure question, for now
anyway
Do you refresh you database after you add the function? It will not show
up until after you
Do you refresh you database after you add the function? It will not
show up until after you refresh.
Ted Byers wrote:
Well, I just ran another test and the result indicates the cause of
the problem lies elsewhere. I replaced the original function name
with "add_entity" and the end result is
thanks tom,
yes it was fopen problem ... the problem was solved when i did chown postgres ...
i should have seen that ...
thanks,
vishOn 12/28/05, Tom Lane <[EMAIL PROTECTED]> wrote:
vishal saberwal <[EMAIL PROTECTED]> writes:> I believe its something in the function but i can't spot the error
then check what the other fellow suggested, make sure
you're creating the function in the right database and the right schema; and
checking it in pgAdmin at the same location.
cheers,
jonel
From: Ted Byers [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 28, 2005 6:15 PMTo: Jonel
Ri
Well, I just ran another test and the result indicates the
cause of the problem lies elsewhere. I replaced the original function name
with "add_entity" and the end result is the same. The function gets stored
somewhere, but it is not displayed anywhere by pgAdmin
Any suggestions?
Hi David, it looks to me like this tool makes an external data source
appear to live within Postgres. What I want to do is dump an Oracle
database and replace it with Postgres. From that point on I don't
ever want to see Oracle again. Can your software be used to
accomplish that goal?
On Wednesday 2005-12-28 05:38, Martijn van Oosterhout wrote:
> On Wed, Dec 28, 2005 at 03:17:40PM +0300, Dmitry Panov wrote:
> > I'm currently considering setting up online backup procedure and I
> > thought maybe it would be a useful feature if the online logs could be
> > written into more than o
Yep, we try to keep all the sql in functions/procedures as it makes
updates a lot easier and keeps the business logic seperate from the
client application.
We use native compiled front ends (Delphi) for windows and Lazarus for
everything else. When you keep everything in a function/proc it make
Pamela wrote:
SQ- ledger.org provided by Dann Corbit has a lot of what I would be looking
for plus more. The financials would require a budgeted amount plus requires
budgeted minus actual, plus many computations and configurations so that
they could at consolidated statements for the churches
Tony Caduto schrieb:
> Tino Wildenhain wrote:
>
>>
>> We do not talk about exceptions here. I'm talking about transactions.
>> And you never know who will be aborting a transaction after your
>> call to the function. No need for referral to the fine manuals :-)
>>
>
> Common Tino, you let users a
Tino Wildenhain wrote:
We do not talk about exceptions here. I'm talking about transactions.
And you never know who will be aborting a transaction after your
call to the function. No need for referral to the fine manuals :-)
Common Tino, you let users abort transactions? Who else is going to
John McCawley <[EMAIL PROTECTED]> writes:
> In looking at the "\d tbl_claim" output, there is something odd I
> notice. I have many foreign keys (the claim_id in tbl_claim is
> referenced by 12 or so other tables, and tbl_claim references about 6 or
> so tables by their _id)
It seems a good be
yup, just use lowercase all the
time
From: Ted Byers [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 28, 2005 1:45 PMTo: Jonel
Rienton; pgsql-general@postgresql.orgSubject: Re: [GENERAL] Final
stored procedure question, for now anyway
Did you find a fix for it?
- Original Messa
On Wed, Dec 28, 2005 at 12:12:06PM -0800, Matthew Hixson wrote:
> What's the best way to import an Oracle database into Postgres? I'm
> using Oracle 8.1 and Postgres 8.1.1.
DBI-Link. http://pgfoundry.org/projects/dbi-link/
Let me know if you have questions or problems along the way :)
Cheers,
Tom Lane wrote:
The differential would have to be index updates or triggers fired by the
UPDATE. I'd bet on
the latter, but since you've told us zip about your schema or what PG
version this is, it's impossible to speculate further...
This is my development machine. I'm running PostgreSQ
http://archives.postgresql.org/pgsql-advocacy/2005-10/msg00311.php or
contrib/oracle are probably your best bet.
On Wed, Dec 28, 2005 at 12:12:06PM -0800, Matthew Hixson wrote:
> What's the best way to import an Oracle database into Postgres? I'm
> using Oracle 8.1 and Postgres 8.1.1.
> Thank
Matthew Hixson <[EMAIL PROTECTED]> writes:
> What's the best way to import an Oracle database into Postgres? I'm
> using Oracle 8.1 and Postgres 8.1.1.
Look in contrib/oracle/ for some conversion tools. I've never used 'em
and don't know if they're any good, but it's a starting point anyway.
A
On 12/28/05, John McCawley <[EMAIL PROTECTED]> wrote:
> I am currently having a problem with a query never finishing (or at
> least not in a reasonable amount of time.) I have had similar problems
> to this in Postgres over the past several years, and I have always found
> workarounds. This time
What's the best way to import an Oracle database into Postgres? I'm
using Oracle 8.1 and Postgres 8.1.1.
Thanks,
-M@
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
John McCawley <[EMAIL PROTECTED]> writes:
> I am currently having a problem with a query never finishing (or at
> least not in a reasonable amount of time.) I have had similar problems
> to this in Postgres over the past several years, and I have always found
> workarounds. This time I'd like
vishal saberwal <[EMAIL PROTECTED]> writes:
> I believe its something in the function but i can't spot the error.
Well, that sure looks like a NULL result; have you considered the
possibility that the fopen is failing?
BTW, that code will happily clobber memory that doesn't
belong to it if the pa
I am currently having a problem with a query never finishing (or at
least not in a reasonable amount of time.) I have had similar problems
to this in Postgres over the past several years, and I have always found
workarounds. This time I'd like to actually understand what is happening.
I have
Did you find a fix for it?
- Original Message -
From:
Jonel
Rienton
To: 'Ted Byers' ; pgsql-general@postgresql.org
Sent: Wednesday, December 28, 2005 1:24
PM
Subject: RE: [GENERAL] Final stored
procedure question, for now anyway
it's because of the mixed
hi all,
I am trying to read a file from the File System.
The function compiles fine, the function is created fine in postgres but the output is NULL/BLANK.
The file does exists and has chmod 777 permission.
PG_FUNCTION_INFO_V1(file_export);
Datum file_export(PG_FUNCTION_ARGS)
{
char *FilePat
"Jim C. Nasby" <[EMAIL PROTECTED]> writes:
> On Tue, Dec 27, 2005 at 11:25:37PM +0200, Eugene wrote:
>> I ask db like this SELECT * FROM ipdb2 WHERE '3229285376' BETWEEN ipfrom
>> AND ipto;
> I'm pretty sure PostgreSQL won't be able to use any indexes for this
> (EXPLAIN ANALYZE would verify th
On 12/27/05, Eugene <[EMAIL PROTECTED]> wrote:
Hello!I've managed to import into postgre DB 3 800 000 rows of data (500 MB pureCSV ~ 2 GB SQL DB)It looks like this"69110784","69111807","US","UNITEDSTATES","ILLINOIS","BLOOMINGTON","
40.4758","-88.9894","61701","LEVEL 3COMMUNICATIONS INC","DSL-VERIZO
I have a question about this, shouldn't it be the query should look like
SELECT *
FROM ipdb2
WHERE 3229285376 BETWEEN ipfrom AND ipto
Note the query doesn't quote the filter, since the ipfrom and ipto are both
integer types?
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PR
it's because of the mixed-case you're using in the function
name, i've had this issue last week myself and it seems to be the
culprit
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ted
ByersSent: Wednesday, December 28, 2005 11:13 AMTo:
pgsql-general@postgresql.orgSubject:
Ted Byers wrote:
> It must be stored somewhere since I get an error saying the function
> already exists if I attempt to modiy it slightly and re-run it. For
> example, I noticed I used the wrong sequence in the last INSERT
> statement. To correct that, I had to add "OR REPLACE" after "CREATE"
>
> "Ted" == Ted Byers <[EMAIL PROTECTED]> writes:
Ted> Here is a general question relating to this. The problem involves due
Ted> diligence related to environmental protection. Consider a distributed
Ted> application to support this. You have a facility with an
Ted> environmental monitoring
- Original Message -
From: "Vivek Khera" <[EMAIL PROTECTED]>
To: "PG-General General"
Sent: Wednesday, December 28, 2005 11:48 AM
Subject: Re: [GENERAL] sending mail from Postgres
On Dec 28, 2005, at 8:28 AM, Christopher Browne wrote:
Some separate process (perhaps polling, perha
decibel=# set log_min_error_statement=error;
SET
decibel=# select 1 2;
ERROR: syntax error at or near "2" at character 10
LINE 1: select 1 2;
^
decibel=# \q
[EMAIL PROTECTED]:47]~:21%tail -n 2 /opt/local/var/log/pgsql8/postgres.log
ERROR: syntax error at or near "2" at character
Tony Caduto schrieb:
> Tino Wildenhain wrote:
>
>> How do you stop your server sending mail in case a transaction goes
>> wild and is sending mails for every updated row in a some megs table?
>>
>
> It would not be smart to send a email via a trigger that updates or
> inserts 1000s of rows would
> "Ingo" == Ingo van Lil <[EMAIL PROTECTED]> writes:
Ingo> Well, in my case the situation is further complicated by the fact that
Ingo> adding a column to the view should be done automatically from a trigger
Ingo> function. I wanted some kind of matrix view that had a column for every
Ingo> ro
On Tue, Dec 27, 2005 at 11:25:37PM +0200, Eugene wrote:
> I've indexed first two columns they are IPfrom, IPto also table is btree
> version of postgre is 7.4.8, on hosting
You should ask them to upgrade; 7.4 is getting pretty old.
> I ask db like this SELECT * FROM ipdb2 WHERE '3229285376' BETW
OK, I finally have Postgres accepting my stored
procedure. here is the relevant data in the history window of pgAmind III
Query:
=
-- Executing query:CREATE OR REPLACE FUNCTION
addEntity ( fn IN VARCHAR, ln IN VARCHAR, ivar IN
VARCHAR, hi IN VARCHAR, pw IN VA
On Wed, 2005-12-28 at 16:38 +, Ian Harding wrote:
> On 12/28/05, Dmitry Panov <[EMAIL PROTECTED]> wrote:
> > On Wed, 2005-12-28 at 11:05 -0500, Tom Lane wrote:
> > > Dmitry Panov <[EMAIL PROTECTED]> writes:
> > > > Yes, but if the server has crashed earlier the script won't be called
> > > > an
On Thu, Dec 22, 2005 at 05:16:16PM +0100, Peter Eisentraut wrote:
> Jim C. Nasby wrote:
> > Some (most?) database's idea of 'creating a type' is actually what we
> > consider creating a domain,
>
> Which databases do such a thing?
IIRC, Oracle, DB2, Sybase and MSSQL, though my memory's rusty... a
On Dec 28, 2005, at 8:28 AM, Christopher Browne wrote:
Some separate process (perhaps polling, perhaps using NOTIFY/LISTEN)
would then grab messages from the table and submit them to [whatever
is the communications layer].
That is a clean sort of design for that sort of thing.
This is precis
On Dec 28, 2005, at 9:46 AM, Frank van Vugt wrote:
I may be overlooking some option here, but somewhere between the v7
series and
the current v8.1.1 that I'm using, failed queries stopped being
logged, only
the error message appears in the log (config option log_statement =
all).
I.e. ex
On Wed, Dec 28, 2005 at 02:15:24PM +0100, H.J. Sanders wrote:
> is there a way to find out how many deleted records there are in
> a table (this gives an indication that it is time to vacuum)?
Use the pgstattuple() function from contrib/pgstattuple.
test=> CREATE TABLE foo (x integer);
CREATE TAB
Tino Wildenhain wrote:
How do you stop your server sending mail in case a transaction goes
wild and is sending mails for every updated row in a some megs table?
It would not be smart to send a email via a trigger that updates or
inserts 1000s of rows would it? All the times I have used PL P
On 12/28/05, Dmitry Panov <[EMAIL PROTECTED]> wrote:
> On Wed, 2005-12-28 at 11:05 -0500, Tom Lane wrote:
> > Dmitry Panov <[EMAIL PROTECTED]> writes:
> > > Yes, but if the server has crashed earlier the script won't be called
> > > and if the filesystem can't be recovered the changes will be lost.
On Wed, 2005-12-28 at 11:05 -0500, Tom Lane wrote:
> Dmitry Panov <[EMAIL PROTECTED]> writes:
> > Yes, but if the server has crashed earlier the script won't be called
> > and if the filesystem can't be recovered the changes will be lost. My
> > point is the server should write into both (or more)
Dmitry Panov <[EMAIL PROTECTED]> writes:
> Yes, but if the server has crashed earlier the script won't be called
> and if the filesystem can't be recovered the changes will be lost. My
> point is the server should write into both (or more) files at the same
> time.
As for that, I agree with the ot
On 28 Dec 2005, Florian G. Pflug wrote:
> >I could think of a few situations where extending a view might be
> >useful, and I'd appreciate to see it supported. I don't see any reason
> >not to allow it as long as no existing columns are removed or have their
> >type changed.
>
> Well, some other v
On Wed, 2005-12-28 at 10:39 -0500, Tom Lane wrote:
> Dmitry Panov <[EMAIL PROTECTED]> writes:
> > I'm currently considering setting up online backup procedure and I
> > thought maybe it would be a useful feature if the online logs could be
> > written into more than one place (something like oracle
Frank van Vugt <[EMAIL PROTECTED]> writes:
> I may be overlooking some option here, but somewhere between the v7 series
> and
> the current v8.1.1 that I'm using, failed queries stopped being logged, only
> the error message appears in the log (config option log_statement = all).
See log_min_er
Tony Caduto schrieb:
> Tino,
> I am talking about corporate apps, there would never be thousands of
> emails in the email servers inbound queue from just a few database
> applications. (anyway a thousand emails in a Postfix queue is nothing)
>
> Sometimes it is best to send the email right from th
Vilen Tambovtsev <[EMAIL PROTECTED]> writes:
> - 2005-12-28 19:02:49 NOVT - - 2747: PANIC: could not access status of
> transaction 74678708
What Postgres version is this?
regards, tom lane
---(end of broadcast)---
TIP
Dmitry Panov <[EMAIL PROTECTED]> writes:
> I'm currently considering setting up online backup procedure and I
> thought maybe it would be a useful feature if the online logs could be
> written into more than one place (something like oracle redo logs
> multiplexing).
You can do whatever you want
On 12/28/05, Dmitry Panov <[EMAIL PROTECTED]> wrote:
> On Wed, 2005-12-28 at 13:38 +0100, Martijn van Oosterhout wrote:
> > On Wed, Dec 28, 2005 at 03:17:40PM +0300, Dmitry Panov wrote:
> > > I'm currently considering setting up online backup procedure and I
> > > thought maybe it would be a useful
And you can code a trigger that fires when there is a difference of 60
days between dates(I have apps that do so...,and the trigger sends a email)
I guess I should expand on this more, the trigger is fired via a
insert/update into a table called logons, when a user logs on to the
system a re
Hi,
I may be overlooking some option here, but somewhere between the v7 series and
the current v8.1.1 that I'm using, failed queries stopped being logged, only
the error message appears in the log (config option log_statement = all).
I.e. executing
select 1 2;
will result in just the
You might also try Quasar Accounting, which is GPL and has graphical
client frontends for both Linux and Windows.
http://www.linuxcanada.com
And yes, it does run on PG.
On Tue, 27 Dec 2005, Pamela wrote:
I would prefer using linux. I have worked in a limited capacity with both
linux and
Tino,
I am talking about corporate apps, there would never be thousands of
emails in the email servers inbound queue from just a few database
applications. (anyway a thousand emails in a Postfix queue is nothing)
Sometimes it is best to send the email right from the client app, but in
many sit
Got to make it work, but now, when i try to make a dump it says
pg_dump: SQL command failed
pg_dump: Error message from server: ERROR: missing chunk number 0 for toast
value 2969644
pg_dump: The command was: FETCH 100 FROM _pg_dump_cursor
tried reindex:
reindexdb: reindexing of database "hostel
Hello!
I've managed to import into postgre DB 3 800 000 rows of data (500 MB pure
CSV ~ 2 GB SQL DB)
It looks like this
"69110784","69111807","US","UNITED
STATES","ILLINOIS","BLOOMINGTON","40.4758","-88.9894","61701","LEVEL 3
COMMUNICATIONS INC","DSL-VERIZON.NET"
"69111808","69112831","US"
use this:
$ psql -Uyer_user -dyer_database -fyer_copy_script.sql <
yer_data_file.csv
where yer-copy-script.sql is:
-- -
drop table foo;
create table foo (
c01 varchar,
c02 varchar,
c03 varchar,
c04 varchar,
c05 varchar,
c06 varchar,
c07 varchar,
c08 varchar,
> On Tue, 2005-12-27 at 20:58 -0800, Randal L. Schwartz wrote:
>> > "Tony" == Tony Caduto <[EMAIL PROTECTED]> writes:
>>
>> Tony> Check out my site at http://www.amsoftwaredesign.com
>>
>> Tony> and click on the forums link, I have some examples on how to send a
>> Tony> email from a function
On Wed, Dec 28, 2005 at 02:13:14PM +0100, Grzegorz Ta?czyk wrote:
> So why after closing all connections database system starts up
> immediately? This problem also occurs when backend starts up before
> database system and there are connections pending. Always the best
> solution is to restart back
Hi Folks.
Couldn't find it in any mailing list so:
is there a way to find out how many deleted records there are in a table
(this gives an indication that it is time to vacuum)?
Many thanks
Henk Sanders
---(end of broadcast)--
Hello Martijn,
Wednesday, December 28, 2005, 1:17:54 PM, you wrote:
MvO> > My question is about the last line. Does those connections slow down
MvO> > database startup process? Now it looks like that they do, because
MvO> > when I shutdown backend then database starts immediatel, but I'm not
On Wed, 2005-12-28 at 13:38 +0100, Martijn van Oosterhout wrote:
> On Wed, Dec 28, 2005 at 03:17:40PM +0300, Dmitry Panov wrote:
> > I'm currently considering setting up online backup procedure and I
> > thought maybe it would be a useful feature if the online logs could be
> > written into more th
Hello,
My disk went out of space, so pgsql crashed, and had some FS troubles occurred.
I fixed FS, then tried to start and got this:
- 2005-12-28 19:02:49 NOVT - - 2747: LOG: database system was interrupted at
2005-12-28 19:02:09 NOVT
- 2005-12-28 19:02:49 NOVT - - 2747: LOG: checkpoint r
On Wed, Dec 28, 2005 at 03:17:40PM +0300, Dmitry Panov wrote:
> I'm currently considering setting up online backup procedure and I
> thought maybe it would be a useful feature if the online logs could be
> written into more than one place (something like oracle redo logs
> multiplexing).
>
> If I
On Wed, Dec 28, 2005 at 01:03:16PM +0100, Grzegorz Ta?czyk wrote:
> Hello,
>
> Here is what I see in log file:
>
> WARNING: terminating connection because of crash of another server process
> FATAL: the database system is starting up
> (and the last line repeats on each connection generate
Hi,
I'm currently considering setting up online backup procedure and I
thought maybe it would be a useful feature if the online logs could be
written into more than one place (something like oracle redo logs
multiplexing).
If I got it right if the server's filesystem crashes completely then the
Hi Guys, Finally here is the one place most web interface tools available for postgresql database http://www.debianhelp.co.uk/postgresqlweb.htm hopefully you will enjoy this
Play Santa's Celebrity Xmas Party, an exclusive game from Yahoo!
Hello,
Here is what I see in log file:
WARNING: terminating connection because of crash of another server process
DETAIL: The postmaster has commanded this server process to roll back the curre
nt transaction and exit, because another server process exited abnormally and po
ssibly corrupted s
Tony Caduto schrieb:
> Randal L. Schwartz wrote:
>
>> I fear for the future.
>>
>> Did someone forget what a "database" is for?
>>
>
> You have nothing to fear but fear itself
> (FDR http://historymatters.gmu.edu/d/5057/)
>
> Let us see why this might be handy(sending a email or connecting t
You need to create a servlet (or the equivalent in ASP, PHP etc) that
sits between the clients browser and your database. In this layer you
implement a cache. The first time the image is requested you retrieve it
from the database and serve it normally, but you also copy the byte
stream to your
On Wed, Dec 28, 2005 at 01:00:27AM +0100, Petr wrote:
> I'm try to explain my problems. My customer have Postgre server with any
> older version of my DB (without any new or modified views, functions etc.)
> and when i create export (in pgAdmin3), then pg_dump makes a SQL script. Ok.
> It's nice, b
Randal L. Schwartz wrote:
I fear for the future.
Did someone forget what a "database" is for?
You have nothing to fear but fear itself
(FDR http://historymatters.gmu.edu/d/5057/)
Let us see why this might be handy(sending a email or connecting to a
socket server).
The email function
Hi All,
So I am trying to store images in the db which will be accessed from
a midlet and website.
So I looked into generating temp files, such as the one done here
using servlets (http://fdegrelle.over-blog.com/categorie-275139.html).
What I am confused about is that this may not be very effic
87 matches
Mail list logo