<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
<blockquote
cite="mid:CA+ixmebrsL+gBP8dr1zwSu_Qr1AfYy2pHBF0gP5fU+m5j2EwEg@mail.gmail.com"
type="cite">
<blockquote type="cite">
<pre wrap="">
</pre>
<blockquote type="cite">
<pre wrap="">No.
Anyway, I change the colum names (id,name to col1, col2)
The error is:
"Cannot insert the value NULL into column 'col', table tempdb.dbo.#t..."
</pre>
</blockquote>
<pre wrap="">
This error has nothing to do with FPC or SQLDB.
Your SQL statement is trying to insert NULL in a required field.
</pre>
</blockquote>
<pre wrap=""><!---->
No Michael, see the example I wrote before.
Create table:
create table #t (col1 int, col2 varchar(60))
OBS: No column is required.
This INSERT works:
insert into #t values (1, 'bla bla bla')
This INSERT do NOT works:
insert into #t (col2) values ('bla bla')
</pre>
</blockquote>
<br>
Marcos, can you please test with explicitly allowed nulls:<br>
create table #t (col1 int NULL, col2 varchar(60) NULL)<br>
<br>
(MS SQL Server nullability is controled by database setting "<b>ANSI
null default"</b> so you can check this setting on your temp database
also)<b><br>
</b>L.<b><br>
</b>
</body>
</html>