BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

ProcedureDataSet and resultSetToDataSet doesn't work

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> JBuilder Databases
View previous topic :: View next topic  
Author Message
Christa Schneider
Guest





PostPosted: Fri Jun 23, 2006 4:01 pm    Post subject: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote



Hi,

I have a problem with ProcedureDataSet it doesn't work and I don't know
why?
I work with JBuilder 9 and Postgres 7.4 (Postgres 8.01)

Here is the Quellcode:

row.addColumn("ref", Variant.OBJECT, ParameterType.RETURN);
row.getColumn("ref").setSqlType(Types.OTHER);
row.addColumn("krit", Variant.STRING, ParameterType.IN);
row.setString("krit", "where value=15");

//Error!
db.setAutoCommit(false);
pr.setProcedure(new com.borland.dx.sql.dataset.ProcedureDescriptor(db, "{? =
call func(?)}", row, true, Load.ALL));
pr.executeQuery();

When I called it with ProcedureProvider it works fine, but I get a
NullPointerException by db.resultSetToDataSet

ProcedureProvider p = new ProcedureProvider();
p.callProcedure(db, "{:ref = call func(:krit)}", row);
ResultSet rs1 = (ResultSet) row.getObject("ref");

//Error! NullPointerException
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);

Can anybody help me?
Thanks
Christa Schneider
Back to top
John Moore (TeamB)
Guest





PostPosted: Fri Jun 23, 2006 11:17 pm    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote



Christa Schneider wrote:

Quote:
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);

Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
Christa Schneider
Guest





PostPosted: Fri Jun 23, 2006 11:56 pm    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote



Thank you for the answer, but it is only a type mistake.

THIS DOESN' T WORK, why?
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1); //or pd = db.resultSetToDataSet(rs1);

Thanks
Christa Schneider

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449c3030$1 (AT) newsgroups (DOT) borland.com...
Quote:
Christa Schneider wrote:

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);

Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
John Moore (TeamB)
Guest





PostPosted: Sat Jun 24, 2006 11:13 pm    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote

It should...

What errors are you getting.. (stacktrace.. please...)

John...




Christa Schneider wrote:
Quote:
Thank you for the answer, but it is only a type mistake.

THIS DOESN' T WORK, why?
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1); //or pd = db.resultSetToDataSet(rs1);

Thanks
Christa Schneider

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449c3030$1 (AT) newsgroups (DOT) borland.com...
Christa Schneider wrote:

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);
Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================






--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
Christa Schneider
Guest





PostPosted: Sun Jun 25, 2006 3:00 am    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote

Here the exeption:
java.lang.NullPointerException
at
org.postgresql.jdbc2.AbstractJdbc2ResultSetMetaData.getColumnCount(AbstractJdbc2ResultSetMetaData.java:34)
at com.borland.dx.sql.dataset.RuntimeMetaData.a(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.a(Unknown Source)
at com.borland.dx.sql.dataset.Database.resultSetToDataSet(Unknown Source)
at tools.StoredTest.jbInit(StoredTest.java:73)
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)

This is the code:
ResultSet rs1 = (ResultSet) row.getObject("ref");
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);
while (pd.next()) {
System.out.println(pd.getString(3));
}
/*
//this works
while(rs1.next()) {
System.out.println(rs1.getString(3));
}
*/
Thanks
Christa

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449d80af$1 (AT) newsgroups (DOT) borland.com...
Quote:
It should...

What errors are you getting.. (stacktrace.. please...)

John...




Christa Schneider wrote:
Thank you for the answer, but it is only a type mistake.

THIS DOESN' T WORK, why?
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1); //or pd = db.resultSetToDataSet(rs1);

Thanks
Christa Schneider

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449c3030$1 (AT) newsgroups (DOT) borland.com...
Christa Schneider wrote:

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);
Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================






--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
John Moore (TeamB)
Guest





PostPosted: Mon Jun 26, 2006 11:12 pm    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote

Christa Schneider wrote:
Quote:
Here the exeption:
java.lang.NullPointerException
at
org.postgresql.jdbc2.AbstractJdbc2ResultSetMetaData.getColumnCount(AbstractJdbc2ResultSetMetaData.java:34)
at com.borland.dx.sql.dataset.RuntimeMetaData.a(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.a(Unknown Source)
at com.borland.dx.sql.dataset.Database.resultSetToDataSet(Unknown Source)
at tools.StoredTest.jbInit(StoredTest.java:73)
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)



Ok.. the problem is that your resultset has no metadata attached.. (it's
null) Notice "ResultSetMetaData.getColumnCount(...)"

I have never used this syntax.. (row.getObject(..)) so I'm not familiar
with what it returns. I would research this first.. It could be a jdbc
implementation issue.. (contact Postgresql folks.. maybe..??)

John...


Quote:
This is the code:
ResultSet rs1 = (ResultSet) row.getObject("ref");
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);
while (pd.next()) {
System.out.println(pd.getString(3));
}
/*
//this works
while(rs1.next()) {
System.out.println(rs1.getString(3));
}
*/
Thanks
Christa

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449d80af$1 (AT) newsgroups (DOT) borland.com...
It should...

What errors are you getting.. (stacktrace.. please...)

John...




Christa Schneider wrote:
Thank you for the answer, but it is only a type mistake.

THIS DOESN' T WORK, why?
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1); //or pd = db.resultSetToDataSet(rs1);

Thanks
Christa Schneider

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449c3030$1 (AT) newsgroups (DOT) borland.com...
Christa Schneider wrote:

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);
Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================




--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================






--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
Christa Schneider
Guest





PostPosted: Tue Jun 27, 2006 1:19 pm    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote

Thank you very much, I will try it.

I think it is not the best way, but I know no other.

I have a problem with setProcedure too!
I haven't found any example that works.

Is there a way to run this?

Database db = new Database();
ProcedureDataSet pr = new ProcedureDataSet();
db.setAutoCommit(false);
row.addColumn("ref", Variant.OBJECT, ParameterType.OUT);
row.getColumn("ref").setSqlType(Types.OTHER);
row.addColumn("krit", Variant.STRING, ParameterType.IN);
row.setString("krit", "where k_kd_id=15");

// pr.addColumn("ref",Variant.OBJECT);
// pr.addColumn("krit",Variant.STRING);

pr.setProcedure(new com.borland.dx.sql.dataset.ProcedureDescriptor(db,
"{:ref = call func_tn_im_kurs(:krit) }", row, true,
Load.ALL));

//pr.open(); // Exeption: close the DataSet first.

pr.executeQuery(); //GET THE Exception

while (pr.next()) {
System.out.println(pr.getString(3));
}

See com.borland.dx.dataset.DataSetException error code: BASE+47
com.borland.dx.dataset.DataSetException: Chain of 2 or more Exceptions
occurred
at com.borland.dx.dataset.DataSetException.a(Unknown Source)
at com.borland.dx.dataset.DataSetException.throwExceptionChain(Unknown
Source)
at com.borland.dx.sql.dataset.JdbcProvider.c(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.executeQuery(Unknown Source)
at tools.StoredTest.jbInit(StoredTest.java:6Cool
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)
Chained exception:
org.postgresql.util.PSQLException: Connection is closed. Operation is not
permitted.
at
org.postgresql.jdbc1.AbstractJdbc1ResultSet.next(AbstractJdbc1ResultSet.java:138)
at com.borland.dx.sql.dataset.JdbcProvider.a(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.c(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.executeQuery(Unknown Source)
at tools.StoredTest.jbInit(StoredTest.java:6Cool
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)

Thanks
Christa


"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:44a023aa$1 (AT) newsgroups (DOT) borland.com...
Quote:
Christa Schneider wrote:
Here the exeption:
java.lang.NullPointerException
at
org.postgresql.jdbc2.AbstractJdbc2ResultSetMetaData.getColumnCount(AbstractJdbc2ResultSetMetaData.java:34)
at com.borland.dx.sql.dataset.RuntimeMetaData.a(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.a(Unknown Source)
at com.borland.dx.sql.dataset.Database.resultSetToDataSet(Unknown
Source)
at tools.StoredTest.jbInit(StoredTest.java:73)
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)



Ok.. the problem is that your resultset has no metadata attached.. (it's
null) Notice "ResultSetMetaData.getColumnCount(...)"

I have never used this syntax.. (row.getObject(..)) so I'm not familiar
with what it returns. I would research this first.. It could be a jdbc
implementation issue.. (contact Postgresql folks.. maybe..??)

John...


This is the code:
ResultSet rs1 = (ResultSet) row.getObject("ref");
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);
while (pd.next()) {
System.out.println(pd.getString(3));
}
/*
//this works
while(rs1.next()) {
System.out.println(rs1.getString(3));
}
*/
Thanks
Christa

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449d80af$1 (AT) newsgroups (DOT) borland.com...
It should...

What errors are you getting.. (stacktrace.. please...)

John...




Christa Schneider wrote:
Thank you for the answer, but it is only a type mistake.

THIS DOESN' T WORK, why?
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1); //or pd = db.resultSetToDataSet(rs1);

Thanks
Christa Schneider

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449c3030$1 (AT) newsgroups (DOT) borland.com...
Christa Schneider wrote:

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);
Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================




--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================






--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
John Moore (TeamB)
Guest





PostPosted: Thu Jun 29, 2006 2:19 am    Post subject: Re: ProcedureDataSet and resultSetToDataSet doesn't work Reply with quote

Christa,

The error appears to be in

org.postgresql.jdbc1.AbstractJdbc1ResultSet.next


Normally I would have used..

while (pr.inbounds()) {
System.out.println(pr.getString(3));
pr.next();
}

.... to walk the dataset..

Also your syntax for the procedure call may be off.. It looks like you
are using the function call not the procedure call syntax..

{ call ProcedureName (?,?,?)}

What I would suggest is to great a small "application" and use the
ProcedureDataSet property dialog to make these settings.. Then you can
use "Browse Procedures" and it will help write the code for the setup.

Sorry I'm not that much help.. I mostly use Interbase/Firebird and I
access store procedures using the select syntax

John...

Christa Schneider wrote:
Quote:
Thank you very much, I will try it.

I think it is not the best way, but I know no other.

I have a problem with setProcedure too!
I haven't found any example that works.

Is there a way to run this?

Database db = new Database();
ProcedureDataSet pr = new ProcedureDataSet();
db.setAutoCommit(false);
row.addColumn("ref", Variant.OBJECT, ParameterType.OUT);
row.getColumn("ref").setSqlType(Types.OTHER);
row.addColumn("krit", Variant.STRING, ParameterType.IN);
row.setString("krit", "where k_kd_id=15");

// pr.addColumn("ref",Variant.OBJECT);
// pr.addColumn("krit",Variant.STRING);

pr.setProcedure(new com.borland.dx.sql.dataset.ProcedureDescriptor(db,
"{:ref = call func_tn_im_kurs(:krit) }", row, true,
Load.ALL));

//pr.open(); // Exeption: close the DataSet first.

pr.executeQuery(); //GET THE Exception

while (pr.next()) {
System.out.println(pr.getString(3));
}

See com.borland.dx.dataset.DataSetException error code: BASE+47
com.borland.dx.dataset.DataSetException: Chain of 2 or more Exceptions
occurred
at com.borland.dx.dataset.DataSetException.a(Unknown Source)
at com.borland.dx.dataset.DataSetException.throwExceptionChain(Unknown
Source)
at com.borland.dx.sql.dataset.JdbcProvider.c(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.executeQuery(Unknown Source)
at tools.StoredTest.jbInit(StoredTest.java:6Cool
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)
Chained exception:
org.postgresql.util.PSQLException: Connection is closed. Operation is not
permitted.
at
org.postgresql.jdbc1.AbstractJdbc1ResultSet.next(AbstractJdbc1ResultSet.java:138)
at com.borland.dx.sql.dataset.JdbcProvider.a(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.c(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.refresh(Unknown Source)
at com.borland.dx.sql.dataset.ProcedureDataSet.executeQuery(Unknown Source)
at tools.StoredTest.jbInit(StoredTest.java:6Cool
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)

Thanks
Christa


"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:44a023aa$1 (AT) newsgroups (DOT) borland.com...
Christa Schneider wrote:
Here the exeption:
java.lang.NullPointerException
at
org.postgresql.jdbc2.AbstractJdbc2ResultSetMetaData.getColumnCount(AbstractJdbc2ResultSetMetaData.java:34)
at com.borland.dx.sql.dataset.RuntimeMetaData.a(Unknown Source)
at com.borland.dx.sql.dataset.JdbcProvider.a(Unknown Source)
at com.borland.dx.sql.dataset.Database.resultSetToDataSet(Unknown
Source)
at tools.StoredTest.jbInit(StoredTest.java:73)
at tools.StoredTest.<init>(StoredTest.java:20)
at tools.StoredTest.main(StoredTest.java:29)


Ok.. the problem is that your resultset has no metadata attached.. (it's
null) Notice "ResultSetMetaData.getColumnCount(...)"

I have never used this syntax.. (row.getObject(..)) so I'm not familiar
with what it returns. I would research this first.. It could be a jdbc
implementation issue.. (contact Postgresql folks.. maybe..??)

John...


This is the code:
ResultSet rs1 = (ResultSet) row.getObject("ref");
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);
while (pd.next()) {
System.out.println(pd.getString(3));
}
/*
//this works
while(rs1.next()) {
System.out.println(rs1.getString(3));
}
*/
Thanks
Christa

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449d80af$1 (AT) newsgroups (DOT) borland.com...
It should...

What errors are you getting.. (stacktrace.. please...)

John...




Christa Schneider wrote:
Thank you for the answer, but it is only a type mistake.

THIS DOESN' T WORK, why?
StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1); //or pd = db.resultSetToDataSet(rs1);

Thanks
Christa Schneider

"John Moore (TeamB)" <jbm (AT) microps (DOT) com> schrieb im Newsbeitrag
news:449c3030$1 (AT) newsgroups (DOT) borland.com...
Christa Schneider wrote:

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(ds,rs1); //or pd = db.resultSetToDataSet(rs1);
Try...

StorageDataSet pd=new StorageDataSet();
db.resultSetToDataSet(pd,rs1);


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================


--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================




--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================






--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
====================================================
Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> JBuilder Databases All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.