Quote:
|
Originally Posted by gilgalbiblewhee
Could it be that it's not working because of the settings?
|
no, it's because your INSERT statements are all wrong
to insert a sample row based on your CREATE TABLE specifications, you would write something like this --
Code:
INSERT
INTO bible
( book
, book_spoke
, recordType
, book_title
, chapter
, chapter_spoke
, verse
, verse_spoke
, text_data )
VALUES
( 3
, 3
, 'asdf oiasyur4t asedurg'
, 'awretioujas o9i5rgapojf v q0i9qg 0fv0igarg oasdfga0ig;olj'
, 12
, 12
, 25
, 25
, 'awretioujas o9i5rgapojf v q0i9qg 0fv0igarg oasdfga0ig;olj' )
first, have a look at which columns are mentioned in the above sample query
see any that are missing?
second, have a look at the data types of the values that are being inserted into each column
notice that numeric values are going into numeric columns, and string values are going into string columns
thus is the INSERT statement constructed
