I created a table using SqlCe, like this:

SqlCeCommand createTableCmd = new SqlCeCommand();
            createTableCmd.CommandText = "Create table docEntry (id nvarchar (70) not null PRIMARY KEY, "
                + "parent nvarchar(70), "
                + "lmt bigint not null, "
                + "fileName nvarchar(70) not null)";

table name is docEntry, and the column width I need to find out is fileName column.

The purpose is to detect if the column width is 70, if yes, I need to expand it to other size, else leave it.

I tried "SELECT COL_LENGTH(docEntry, fileName)"

it caused exception:

SqlCeException was caught: The column name is not valid. [ Node name (if any) = ,Column name = docEntry ]

I dont know why...

Anyone knows?

link|improve this question

61% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Think you will have to do it the long way:

SELECT character_maximum_length
FROM information_schema.columns
WHERE table_name = 'docentry'
AND column_name = 'filename'
link|improve this answer
feedback

beside providerspecific solution from @HadleyHope there is a solution that works for all Dabases (at least i tried with mssql2005, oracle10, SQlite3 and MsAccess via OleDB. i have no sqlce on my machine to verify): DbConnection.GetSchema()

This codes works for MsSql.

        using (DbConnection con = new SqlConnection())
        {
            con.ConnectionString = ...;
            con.Open();
            DataTable tabeWithSchemaInfo = con.GetSchema("AllColumns");

You have to replace con = new SqlConnection() if "AllColumns" is not supported by SqlCeConnection call con.GetSchema() to get a list of supported properties.

For more info see GetSchema - DbConnection.GetSchema in ADO.NET 2.0 - Retrieve Databases Tables Columns Views etc. from Database Connection and msdn DbConnection.GetSchema()

link|improve this answer
1  
I tried con.GetSchema(), and I got an NotSupportedException. Further search from here shows that it's not supported in SqlCe. social.msdn.microsoft.com/Forums/en-SG/sqlce/thread/… – VHanded Mar 25 '11 at 1:24
Verified: sqlce3.5sp1 with dotnet 3.5sp1 does not correctly handle GetSchema() – k3b Mar 25 '11 at 7:17
1  
However, SQL Server Compact 4.0 supports GetSchema – ErikEJ Mar 25 '11 at 13:08
@ErikEJ Have you tried it? SqlCe3.5 also has the api but its simply not implemented ... :-( – k3b Mar 25 '11 at 13:12
2  
Yes, I have, and it works in 4.0 (but not 3.5) – ErikEJ Mar 26 '11 at 17:08
show 1 more comment
feedback

Table and column names need to be in quotes:

SELECT COL_LENGTH('docEntry', 'fileName')
link|improve this answer
-1 Compact edition does not support COL_LENGTH – HadleyHope Mar 24 '11 at 15:45
Fair point. However, I didn't say it did, just saying that the syntax of the function was wrong. – Ira Rainey Mar 24 '11 at 15:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.