Hi,
I am using Microsoft Access as a fat client to my Oracle database. Oracle does not support AutoNumber so what I am trying in my Access forms is set the default value to an SQL query, i.e:
SELECT MAX(id)+1 FROM table;
I have tried everything but can't get it to work, all I get is #Name? -...
I am having some linking errors with my LinkedList. Here is my LinkedList.h file:
template <class T>
class LinkedList{
private:
class Node{
private:
T value; // holds the elements in template array of MAX size
Node* pNext; // holds next item pointer
public:
Node(T value...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.