Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You might try checking what compatibility level the database you are connecting to is. If it is set too low (80), it might be defaulting to text because NTEXT was not deprecated until SQL2005, which is compatibility level 90. This is not a guarantee, just a possible thought.</p> <p>This is the MSDN instructions for checking to compatibility level...</p> <blockquote> <p>To view or change the compatibility level of a database</p> <p>After connecting to the appropriate instance of the SQL Server Database Engine, in Object Explorer, click the server name to expand the server tree.</p> <p>Expand Databases, and, depending on the database, either select a user database or expand System Databases and select a system database.</p> <p>Right-click the database, and then click Properties.</p> <p>The Database Properties dialog box opens.</p> <p>In the Select a page pane, click Options.</p> <p>The current compatibility level is displayed in the Compatibility level list box.</p> <p>To change the compatibility level, select a different option from the list. The choices are SQL Server 2000 (80), SQL Server 2005 (90), or SQL Server 2008 (100).</p> </blockquote> <p>With SQLite, there are only 5 datatypes, one being string.</p> <p><a href="http://www.sqlite.org/c3ref/c_blob.html" rel="nofollow">http://www.sqlite.org/c3ref/c_blob.html</a></p> <blockquote> <p>Every value in SQLite has one of five fundamental datatypes:</p> <p>64-bit signed integer<br> 64-bit IEEE floating point number<br> string<br> BLOB<br> NULL </p> <p>These constants are codes for each of those types.</p> <p>Note that the SQLITE_TEXT constant was also used in SQLite version 2 for a completely different meaning. Software that links against both SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not SQLITE_TEXT.</p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload