Tagged Questions

0
votes
3answers
30 views

Most efficient way to select records in one database based on result set from totally different database

I have 2 totally separate databases - one MSSQL and one Pervasive. Due to the way our product data is stored in the Pervasive database, you cannot easily run a query to get a products's information …
0
votes
2answers
20 views

Pervasive and Tango?

We are currnetly looking at redeveloping an Interanet application that was created it would appear with Pervasive SQL and Tango (it usues TAF fiels so this is out assumption). Looking at the …
0
votes
1answer
68 views

Connect a Pervasive DB using OLE DB

We have a existing closed source third party application using a Pervasive PSQL database. For Example the PSQL are located in the directory c:\test and have names like holiday.dat, offers.dat and so …
0
votes
2answers
40 views

Btrieve/Pervasive db and Ruby

Is there any solution to work with Btrieve/Pervasive db from Ruby level? Any gem? Maybe somebody have some experience with such a thing? Or maybe use some Java libs through Jruby? I've never used …
1
vote
1answer
63 views

Pervasive 8 and Python

Is it possible to access a Pervasive 8 (not Pervasive SQL) database from python?
0
votes
1answer
80 views

How do I move a Pervasive PSLQ database between servers

What is the easiest way to move a Pervasive PSQL database between two servers. I can stop the database engines if necessary.
3
votes
7answers
178 views

SQL statement with LIKE

Hello I would like to select all records that have an underscore character in their 11th character, so i try this: SELECT * FROM "BOM_SUB_LEVEL" where TOP_CODE like '%%%%%%%%%%_%%%' but this …
1
vote
1answer
271 views

Using parameterized SQL with LIKE in WHERE clause (Pervasive SQL)

Hi all, I have a Pervasive database that I connect to using C++. All my queries so far is parameterized, i.e "SELECT USER.NAME FROM USER WHERE USER.ID = ?", and that works fine. But in a search …
2
votes
1answer
110 views

Determining the start and end range of bytes changed in a file

I'm working on a little experimental utility to use within our company that indexes notes stored in our custom CRM software for full-text searching. These notes are stored in a Btrieve database (a …
0
votes
2answers
210 views

Methods for interacting with a Pervasive SQL database

I'm in the process of developing a web interface to a service business management application that uses a Pervasive SQL database to store information (not my choice, by the way). At the moment, I'm …
2
votes
4answers
1k views

What’s a ‘pervasive database’?

I'm sorry, but this keyword doesn't mean anything to me... Can someone give me a definition? Thanks in advance...
0
votes
3answers
293 views

Paging in Pervasive SQL

How to do paging in Pervasive SQL (version 9.1)? I need to do something similar like: //MySQL SELECT foo FROM table LIMIT 10, 10 But I can't find a way to define offset.