Ruslan A Dautkhanov wrote:
> Btw, how I can convert TEXT field to a CString one? I had tried to use
> char *cnum = PG_GETARG_CSTRING(0) instead of
> text tnum = PG_GETARG_NAME(0), but it's not worked properly. Is any function
> to convert text object to a null-terminated string??? Thanks ag
Tom Lane wrote:
> Ruslan A Dautkhanov <[EMAIL PROTECTED]> writes:
> > I have to create my own function in C lanuage, which
> > will use SPI. The problem that when I had done all things,
> > PostgreSQL says:
> > isbs=# select pgf1test('123');
> > ERROR: Can't find function pgf1test in fil
Subject says it all
JLL
---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
Ruslan A Dautkhanov <[EMAIL PROTECTED]> writes:
> I have to create my own function in C lanuage, which
> will use SPI. The problem that when I had done all things,
> PostgreSQL says:
> isbs=# select pgf1test('123');
> ERROR: Can't find function pgf1test in file /usr/local/pgsql/lib/pgf1te
Hi,
I have to create my own function in C lanuage, which
will use SPI. The problem that when I had done all things,
PostgreSQL says:
isbs=# select pgf1test('123');
ERROR: Can't find function pgf1test in file /usr/local/pgsql/lib/pgf1test.so
I don't know where problems is. The program is