Subject | Re: Table unknown message with grant problem |
---|---|
Author | rstupidguy |
Post date | 2005-02-07T15:33:49Z |
--- In firebird-support@yahoogroups.com, Helen Borrie <helebor@t...>
wrote:
Here is one example of dll I used to create a table, its not quoted.
I am using dialect 3 though wich is case sensitive.
[code]
CREATE TABLE BOEKINGEN (
BOEKING_ID ID,
BOEKINGSDATUM DATE NOT NULL,
KLANT_ID ID,
ARRANGEMENT_ID "ID with null",
DEFINITIEF YN DEFAULT 'N',
FACTUUR_ID "ID with null",
GEARRIVEERD YN,
USERNAME NAAM,
AANTALPERSONEN INTEGER);
[/code]
It isnt quoted...
wrote:
> At 12:44 PM 7/02/2005 +0000, you wrote:again
>
>
>
> >I just joined this group in the hope someone can get me going
> >on a strange problem I'm stuck on.all
> >
> >The problem:
> >If I create a user for my database and grant him rights (all) to
> >(data) tables and try to connect to a table I get the message 204systemtables I
> >table unknown. If I grant rights to this user for the
> >wont get any error and it ll just function normally.identifiers
>
> My first guess here is that you created your tables with quoted
> (some tools do this for you by default if you don't tell them notusing
> to). Once you create identifiers with quotes, you are stuck with
> them for everything - including privileges.regular
>
> The system tables do not have quoted identifiers. Like any
> database objects without quoted identifiers, their names are caseor mixed
> insensitive (stored in upper case and can be referred to in lower
> case).Thanks for the quick reply
>
> ./hb
Here is one example of dll I used to create a table, its not quoted.
I am using dialect 3 though wich is case sensitive.
[code]
CREATE TABLE BOEKINGEN (
BOEKING_ID ID,
BOEKINGSDATUM DATE NOT NULL,
KLANT_ID ID,
ARRANGEMENT_ID "ID with null",
DEFINITIEF YN DEFAULT 'N',
FACTUUR_ID "ID with null",
GEARRIVEERD YN,
USERNAME NAAM,
AANTALPERSONEN INTEGER);
[/code]
It isnt quoted...