Re: Importing a CSV file to a table on Postgres
От
Tom Lane
Тема
Re: Importing a CSV file to a table on Postgres
Дата
Msg-id
29624.1178411682@sss.pgh.pa.us
Ответ на
Re: Importing a CSV file to a table on Postgres (Oliveiros Cristina)
Список
Дерево обсуждения
What is this thing that is called a "Data Dictionary?" Richard Broersma Jr <rabroersma@yahoo.com>
Re: What is this thing that is called a "Data Dictionary?" Sean Davis <sdavis2@mail.nih.gov>
Re: What is this thing that is called a "Data Dictionary?" Richard Broersma Jr <rabroersma@yahoo.com>
Re: What is this thing that is called a "Data Dictionary?" "Jasbinder Singh Bali" <jsbali@gmail.com>
Re: What is this thing that is called a "Data Dictionary?" "Jasbinder Singh Bali" <jsbali@gmail.com>
Re: What is this thing that is called a "Data Dictionary?" Richard Broersma Jr <rabroersma@yahoo.com>
Re: What is this thing that is called a "Data Dictionary?" "Jim Stalewski" <JStalewski@VisaLighting.com>
Re: What is this thing that is called a "Data Dictionary?" "Jim Stalewski" <JStalewski@VisaLighting.com>
Re: What is this thing that is called a "Data Dictionary?" "Jasbinder Singh Bali" <jsbali@gmail.com>
Re: What is this thing that is called a "Data Dictionary?" "Jim Stalewski" <JStalewski@VisaLighting.com>
Re: What is this thing that is called a "Data Dictionary?" "Jasbinder Singh Bali" <jsbali@gmail.com>
"Oliveiros Cristina" writes: > Suppose I have a row on this table e.g. > 120120 ....... www.record.pt\ > If , on PgAdmin, I query > SELECT IDSite > FROM t_sites > WHERE "tName"='www.record.pt\\\\' > I get nothing, as expected, because the string has two final backslashes, > not one, as the record on table. > But if I try to do it on C# it returns me the 120120. (??) It shouldn't > return nothing as well. > The program is as follows : > strSite = "www.record.pt\\\\" I don't know C# well, but if it's at all like C then the string that is represented by this literal has only two backslashes, and when it gets to the backend that reduces to one backslash, so it matches. regards, tom lane
В списке pgsql-novice по дате отправления