Character Set UTF8 and libpq - Mailing list pgsql-novice

From Nagle, Gail A \(US SSA\)
Subject Character Set UTF8 and libpq
Date
Msg-id 7b4dai$cgs1q@dmzms99901.na.baesystems.com
Whole thread Raw
Responses Re: Character Set UTF8 and libpq  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-novice

Suppose a database is created to use UTF8 encoding using the following command:

               createdb -E UTF8 customers

 

Further suppose that a table is created consisting of two columns, cust_name of type text, and cust_number of type integer.

 

Later, the customers database is accessed programmatically by the  PQexec() or PqexecParams() methods, each of which take a const char *command parameter.  In the program the value of the char* command parameter is built up sequentially by appending bytes to an array of unsigned char. For example, the value could be created by concatenatingINSERT INTO mytable VALUES(" with a unicode valued array for the cust_name column and a simple ascii string for the cust_number.
 
My question is does the entire string, i.e. “INSERT INTO mytable VALUES(" and the integer value need to be UTF8 encoded or can these parts be in plain ascii text?
 
Thank you,
Gail

pgsql-novice by date:

Previous
From: ries van Twisk
Date:
Subject: Re: VARCHAR AND TEXT DATA TYPES
Next
From: Tom Lane
Date:
Subject: Re: Character Set UTF8 and libpq